gov.nih.nci.mageom.domain
Interface NameValueType

All Known Implementing Classes:
NameValueTypeImpl

public interface NameValueType

A tuple designed to store data, keyed by a name and type.

Version:
%I%, %G%

Method Summary
 java.lang.String getName()
          Returns the value of this NameValueType object's name attribute.
 NameValueType[] getPropertySets()
          Returns the value of this NameValueType object's propertySets attribute.
 java.lang.String getType()
          Returns the value of this NameValueType object's type attribute.
 java.lang.String getValue()
          Returns the value of this NameValueType object's value attribute.
 void setName(java.lang.String p_name)
          Sets the name attribute.
 void setPropertySets(NameValueType[] p_propertySets)
          Sets the propertySets attribute.
 void setType(java.lang.String p_type)
          Sets the type attribute.
 void setValue(java.lang.String p_value)
          Sets the value attribute.
 

Method Detail

setName

void setName(java.lang.String p_name)
Sets the name attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NameValueType object.

Parameters:
p_name - The new value for name.
See Also:
getName()

getName

java.lang.String getName()
Returns the value of this NameValueType object's name attribute. Description of name: The name of the key.

Returns:
String The value of name.

setValue

void setValue(java.lang.String p_value)
Sets the value attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NameValueType object.

Parameters:
p_value - The new value for value.
See Also:
getValue()

getValue

java.lang.String getValue()
Returns the value of this NameValueType object's value attribute. Description of value: The value of the name.

Returns:
String The value of value.

setType

void setType(java.lang.String p_type)
Sets the type attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NameValueType object.

Parameters:
p_type - The new value for type.
See Also:
getType()

getType

java.lang.String getType()
Returns the value of this NameValueType object's type attribute. Description of type: The type of the key.

Returns:
String The value of type.

setPropertySets

void setPropertySets(NameValueType[] p_propertySets)
Sets the propertySets attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NameValueType object.

Parameters:
p_propertySets - The new value for propertySets.
See Also:
getPropertySets()

getPropertySets

NameValueType[] getPropertySets()
Returns the value of this NameValueType object's propertySets attribute.

Returns:
gov.nih.nci.mageom.bean.NameValueType[] The value of propertySets.
See Also:
NameValueType