| java.lang.Object org.itsnat.core.NameValue
Constructor Summary | |
public | NameValue(String name, Object value) Creates a new instance with the specified name and value. |
Method Summary | |
public String | getName() Returns the name of the pair name/value. | public Object | getValue() Returns the value of the pair name/value. |
NameValue | public NameValue(String name, Object value)(Code) | | Creates a new instance with the specified name and value.
Parameters: name - the name of the pair name/value. Parameters: value - the value of the pair name/value. |
getName | public String getName()(Code) | | Returns the name of the pair name/value.
the name. |
getValue | public Object getValue()(Code) | | Returns the value of the pair name/value.
the value. |
|
|