public abstract class Issue extends Objective
Issue
represents a negotiation issue to be settled in a negotiation.
Issues in a domain are identified by unique index
field.Constructor and Description |
---|
Issue(java.lang.String name,
int issueNumber)
Creates a new issue give its name and number.
|
Issue(java.lang.String name,
int issueNumber,
Objective parent)
Creates a new issue give its name, number, and parent.
|
Modifier and Type | Method and Description |
---|---|
void |
addChild(Objective newObjective)
Overrides addChild from Objective to do nothing, since Issues can't have children.
|
abstract boolean |
checkInRange(Value value)
Method to check if the given value is in the range specified
by the issue.
|
abstract java.lang.String |
convertToString() |
abstract ISSUETYPE |
getType()
This method is added for convenience.
|
SimpleElement |
toXML()
Returns a SimpleElement representation of this issue.
|
children, equalContents, equals, getAllowsChildren, getChildAt, getChildCount, getChildren, getChildWithID, getDescription, getHighestObjectiveNr, getIndex, getName, getNumber, getObjective, getParent, getPath, getPreorderEnumeration, getPreorderIssueEnumeration, getPreorderObjectiveEnumeration, getSiblings, getUserObject, hashCode, insert, isIssue, isLeaf, isObjective, isParent, remove, remove, removeFromParent, setDescription, setName, setNumber, setParent, setUserObject, toString
public Issue(java.lang.String name, int issueNumber)
name
- of the issue.issueNumber
- unique ID of the issue.public Issue(java.lang.String name, int issueNumber, Objective parent)
name
- of the issue.issueNumber
- uniqueID of the issue.parent
- objective of the issue.public abstract ISSUETYPE getType()
Objective
public abstract java.lang.String convertToString()
public abstract boolean checkInRange(Value value)
value
- to be checked.public void addChild(Objective newObjective)
public SimpleElement toXML()