Hierarchy Developer's Guide for Oracle Self-Service E-Billing > APIs for Customizing <ProductName> Hierarchy Manager >
IAttribute Interface
This interface represents an attribute of a hierarchy node. Each attribute is essentially a name-value pair. A node can have a list of attributes associated with it. Each attribute is identified by its name and value and so, it is possible to have multiple nodes which have the same name but different values. For example, {"fruit", "apple"}, {"fruit", "orange"} and {"fruit", "pear}.
Table 1. IAttribute Methods
|
|
String getName()
|
Gets the name of the attribute |
java.lang.Object getValue()
|
Gets the value of the attribute. |
void setName(java.lang.String name)
|
Sets the name of the attribute |
void setValue(java.lang.Object value)
|
Sets the value of the attribute. |
|