ContinuousCharacter
, DiscreteCharacter
public interface Character
Modifier and Type | Method | Description |
---|---|---|
void |
addTaxon(Taxon taxon) |
add a taxon with this character
|
java.lang.String |
getDesc() |
return the description of the character
|
java.lang.String |
getName() |
return the name of the character
|
java.util.Set<Taxon> |
getTaxa() |
get a Set
|
CharacterType |
getType() |
return the CharacterType of the character
|
java.lang.Object |
getValue(Taxon taxon) |
get a value for a taxon containing the character
|
void |
setDesc(java.lang.String desc) |
set the description of the character
|
void |
setName(java.lang.String name) |
set the name of the character
|
void setName(java.lang.String name)
name
- the name of the characterjava.lang.String getName()
void setDesc(java.lang.String desc)
desc
- the description of the characterjava.lang.String getDesc()
CharacterType getType()
void addTaxon(Taxon taxon)
taxon
- the taxon to add containing the characterjava.lang.Object getValue(Taxon taxon)
taxon
- the taxon to get the value forjava.util.Set<Taxon> getTaxa()
http://code.google.com/p/jebl2/