org.biomage.Interface
Interface HasNodeValue

All Known Implementing Classes:
Node

public interface HasNodeValue


Nested Class Summary
static class HasNodeValue.NodeValue_list
          Inner list class for holding multiple entries for attribute nodeValue.
 
Method Summary
 void addToNodeValue(int position, NodeValue nodeValue)
          Method to add NodeValue at position to NodeValue_list
 void addToNodeValue(NodeValue nodeValue)
          Method to add NodeValue to NodeValue_list
 NodeValue getFromNodeValue(int position)
          Method to get NodeValue from NodeValue_list
 HasNodeValue.NodeValue_list getNodeValue()
          Get method for nodeValue
 void removeElementAtFromNodeValue(int position)
          Method to remove by position from NodeValue_list
 void removeFromNodeValue(NodeValue nodeValue)
          Method to remove first NodeValue from NodeValue_list
 void setNodeValue(HasNodeValue.NodeValue_list nodeValue)
          Set method for nodeValue
 

Method Detail

setNodeValue

void setNodeValue(HasNodeValue.NodeValue_list nodeValue)
Set method for nodeValue

Parameters:
value - to set

getNodeValue

HasNodeValue.NodeValue_list getNodeValue()
Get method for nodeValue

Returns:
value of the attribute

addToNodeValue

void addToNodeValue(NodeValue nodeValue)
Method to add NodeValue to NodeValue_list


addToNodeValue

void addToNodeValue(int position,
                    NodeValue nodeValue)
Method to add NodeValue at position to NodeValue_list


getFromNodeValue

NodeValue getFromNodeValue(int position)
Method to get NodeValue from NodeValue_list


removeElementAtFromNodeValue

void removeElementAtFromNodeValue(int position)
Method to remove by position from NodeValue_list


removeFromNodeValue

void removeFromNodeValue(NodeValue nodeValue)
Method to remove first NodeValue from NodeValue_list