Package | Description |
---|---|
classifierLibrary |
Modifier and Type | Method and Description |
---|---|
static Symbol |
Symbol.byName(java.lang.String name)
Returns any Symbol-Instance given his name.
|
Symbol |
SymbolSet.getDefault()
Returns the default-Symbol of the instance.
|
Symbol |
StandardSituation.getElement(int position)
Returns the Symbol at a given position in the Situation/sequence.
|
Symbol |
SymbolSet.randomSymbol()
Returns a randomly selected Symbol contained in the instance.
|
Symbol |
SymbolSet.symbolByName(java.lang.String Name)
Returns a Symbol given by its Name, if contained in the instance.
|
Modifier and Type | Method and Description |
---|---|
void |
SymbolSet.add(Symbol s)
Method for adding a Symbol to the set.
|
void |
Language.add(Symbol s,
Symbol parent)
Adds a Symbol to a set, as a subordinate to a parent.
|
void |
Symbol.addMember(Language m,
Symbol s)
Makes a given Symbol a subordinate of the instance in a given language.
|
void |
Symbol.addMember(Symbol s)
Makes a given Symbol a subordinate of the instance in the global /
default language.
|
void |
Language.addMultiSymbols(java.lang.String[] names,
Symbol parent)
Adds Symbols following a list of names to the instance.
|
boolean |
Language.checkRel(Symbol parent,
Symbol child)
Checks wether the an element given as parent is really Funktion prüft, ob
das als superordinate to the symbol given as child.
|
boolean |
SymbolSet.contains(Symbol s)
Checks, whether a given Symbol is contained in the set.
|
java.util.ArrayList |
Language.getChildren(Symbol s)
Returns all child elements of a given Symbol as defined in this Language.
|
void |
SymbolSet.remove(Symbol s)
Removes a Symbol from the set.
|
void |
Language.remove(Symbol s) |
void |
SymbolSet.setDefault(Symbol s)
Method to define a Symbol as default-Symbol of the instance.
|
void |
StandardSituation.setElement(int Position,
Symbol Symbol)
Sets the Element of the Situation/sequence at given position to the given
Symbol.
|
boolean |
Symbol.subsumes(Language m,
Symbol s)
Checks, wether a given Symbol is a subordinate to the instance in a given
Language.
|
boolean |
Symbol.subsumes(Symbol s)
Checks, wether a given Symbol is a subordinate to the instance in the
global / default Language.
|