void |
AbstractAttributable.changeBoolean(String path,
boolean value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeBoolean(String path,
boolean value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeByte(String path,
byte value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeByte(String path,
byte value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeDouble(String path,
double value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeDouble(String path,
double value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeFloat(String path,
float value) |
Sets the Attribute at the given path to the given value.
|
void |
Attributable.changeFloat(String path,
float value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeInteger(String path,
int value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeInteger(String path,
int value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeLong(String path,
long value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeLong(String path,
long value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeShort(String path,
short value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeShort(String path,
short value) |
Changes the Attribute at the given path to the given value.
|
void |
AbstractAttributable.changeString(String path,
String value) |
Changes the Attribute at the given path to the given value.
|
void |
Attributable.changeString(String path,
String value) |
Changes the Attribute at the given path to the given value.
|
Attribute |
AbstractAttributable.getAttribute(String path) |
Returns the Attribute of the given path.
|
Attribute |
AbstractCollectionAttribute.getAttribute(String path) |
Returns the attribute located at path .
|
Attribute |
Attributable.getAttribute(String path) |
Returns the Attribute located at the given path.
|
Attribute |
CollectionAttribute.getAttribute(String path) |
Returns the Attribute located at path .
|
Attribute |
CompositeAttribute.getAttribute(String id) |
Returns the attribute with the given id.
|
boolean |
AbstractAttributable.getBoolean(String path) |
Returns the value of the Attribute at the given path.
|
boolean |
Attributable.getBoolean(String path) |
Returns the value of the Attribute at the given path.
|
byte |
AbstractAttributable.getByte(String path) |
Returns the value of the Attribute at the given path.
|
byte |
Attributable.getByte(String path) |
Returns the value of the Attribute at the given path.
|
double |
AbstractAttributable.getDouble(String path) |
Returns the value of the Attribute at the given path.
|
double |
Attributable.getDouble(String path) |
Returns the value of the Attribute at the given path.
|
float |
AbstractAttributable.getFloat(String path) |
Returns the value of the Attribute at the given path.
|
float |
Attributable.getFloat(String path) |
Returns the value of the Attribute at the given path.
|
int |
AbstractAttributable.getInteger(String path) |
Returns the value of theAttribute at the given path.
|
int |
Attributable.getInteger(String path) |
Returns the value of the Attribute at the given path.
|
long |
AbstractAttributable.getLong(String path) |
Returns the value of the Attribute at the given path.
|
long |
Attributable.getLong(String path) |
Returns the value of the Attribute at the given path.
|
short |
AbstractAttributable.getShort(String path) |
Returns the value of the Attribute at the given path.
|
short |
Attributable.getShort(String path) |
Returns the value of the Attribute at the given path.
|
String |
AbstractAttributable.getString(String path) |
Returns the value of the Attribute at the given path.
|
String |
Attributable.getString(String path) |
Returns the value of the Attribute at the given path.
|
void |
AbstractCollectionAttribute.remove(String attrId) |
Removes the attribute with the given id from the collection.
|
void |
AbstractCollectionAttribute.remove(Attribute attr) |
Removes the given attribute from the collection by calling
remove(String id) with the attribute's id as parameter.
|
void |
CollectionAttribute.remove(String id) |
Removes the Attribute with the given id from the
list.
|
void |
CollectionAttribute.remove(Attribute att) |
Removes the given Attribute from the list.
|
Attribute |
AbstractAttributable.removeAttribute(String path) |
Deletes the Attribute attr from the attributes.
|
Attribute |
Attributable.removeAttribute(String path) |
Deletes the Attribute located at the given path from the
attributes.
|
abstract void |
CompositeAttribute.setAttribute(String id,
Attribute att) |
Sets the given attribute to the given value.
|