public class DomainImpl extends java.lang.Object implements Domain, java.io.Serializable
Constructor and Description |
---|
DomainImpl()
Creates an empty domain.
|
DomainImpl(java.io.File domainFile)
read a domain from a file.
|
DomainImpl(SimpleElement root)
Creates a domain given an XML-representation of the domain.
|
DomainImpl(java.lang.String filename)
Creates a domain given the path to a file with an XML-representation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<Issue> |
getIssues() |
java.lang.String |
getName() |
long |
getNumberOfPossibleBids() |
java.util.List<Objective> |
getObjectives() |
Objective |
getObjectivesRoot() |
Bid |
getRandomBid(java.util.Random r) |
SimpleElement |
getXMLRoot() |
int |
hashCode() |
void |
setObjectivesRoot(Objective ob)
Sets a new domain root.
|
SimpleElement |
toXML()
Creates an XML representation of this domain.
|
public DomainImpl()
public DomainImpl(SimpleElement root)
root
- XML-representation of the domain.public DomainImpl(java.lang.String filename) throws java.io.IOException
filename
- java.lang.Exception
java.io.IOException
public DomainImpl(java.io.File domainFile) throws java.io.IOException
domainFile
- file containing the domainjava.io.IOException
java.lang.Exception
- if file not found or containing unreadable (non xml) data.public SimpleElement getXMLRoot()
public final Objective getObjectivesRoot()
getObjectivesRoot
in interface Domain
Objective
.public final void setObjectivesRoot(Objective ob)
ob
- The new root Objectivepublic Bid getRandomBid(java.util.Random r)
getRandomBid
in interface Domain
r
- random variable. if null, a new Random
will be used.Bid
in this domain.public SimpleElement toXML()
null
when there was an error.public java.util.List<Objective> getObjectives()
getObjectives
in interface Domain
Issue
is an Objective
) in
the domain.public java.util.List<Issue> getIssues()
public long getNumberOfPossibleBids()
getNumberOfPossibleBids
in interface Domain
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object