gov.nih.nci.mageom.domain.HigherLevelAnalysis
Interface NodeValue

All Superinterfaces:
Extendable
All Known Implementing Classes:
NodeValueImpl

public interface NodeValue
extends Extendable

A value associated with the Node that can rank it in relation to the other nodes produced by the clustering algorithm.

Version:
%I%, %G%

Method Summary
 OntologyEntry getDataType()
          Returns the value of this NodeValue object's dataType attribute.
 java.lang.String getName()
          Returns the value of this NodeValue object's name attribute.
 OntologyEntry getScale()
          Returns the value of this NodeValue object's scale attribute.
 OntologyEntry getType()
          Returns the value of this NodeValue object's type attribute.
 java.lang.String getValue()
          Returns the value of this NodeValue object's value attribute.
 void setDataType(OntologyEntry p_dataType)
          Sets the dataType attribute.
 void setName(java.lang.String p_name)
          Sets the name attribute.
 void setScale(OntologyEntry p_scale)
          Sets the scale attribute.
 void setType(OntologyEntry p_type)
          Sets the type attribute.
 void setValue(java.lang.String p_value)
          Sets the value attribute.
 
Methods inherited from interface gov.nih.nci.mageom.domain.Extendable
getPropertySets, setPropertySets
 

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 NodeValue object.

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

getName

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

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 NodeValue object.

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

getValue

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

Returns:
any The value of value.

setScale

void setScale(OntologyEntry p_scale)
Sets the scale attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NodeValue object.

Parameters:
p_scale - The new value for scale.
See Also:
getScale()

getScale

OntologyEntry getScale()
Returns the value of this NodeValue object's scale attribute.

Returns:
gov.nih.nci.mageom.bean.Description.OntologyEntry The value of scale.
See Also:
OntologyEntry

setDataType

void setDataType(OntologyEntry p_dataType)
Sets the dataType attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a NodeValue object.

Parameters:
p_dataType - The new value for dataType.
See Also:
getDataType()

getDataType

OntologyEntry getDataType()
Returns the value of this NodeValue object's dataType attribute.

Returns:
gov.nih.nci.mageom.bean.Description.OntologyEntry The value of dataType.
See Also:
OntologyEntry

setType

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

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

getType

OntologyEntry getType()
Returns the value of this NodeValue object's type attribute.

Returns:
gov.nih.nci.mageom.bean.Description.OntologyEntry The value of type.
See Also:
OntologyEntry