Uses of Class
EDU.bmrb.starlibj.DataValueNode

Uses of DataValueNode in EDU.bmrb.starlibj
 

Fields in EDU.bmrb.starlibj declared as DataValueNode
protected  DataValueNode DataItemNode.myDataValue
           
 

Methods in EDU.bmrb.starlibj that return DataValueNode
 DataValueNode DataItemNode.getValueNode()
          getValueNode() is like getValue(), but it returns the whole DataValueNode, not just the string inside it.
 DataValueNode LoopRowNode.elementAt(int index)
          Just like the Vector method of the same name.
 DataValueNode LoopRowNode.firstElement()
          Just like the Vector method of the same name.
 DataValueNode LoopRowNode.lastElement()
          Just like the Vector method of the same name.
 DataValueNode TinyAbsDataValueNode.makeIntoDVN(LoopRowNode par)
           
 DataValueNode TinyRelDataValueNode.makeIntoDVN(LoopRowNode par)
           
 

Methods in EDU.bmrb.starlibj with parameters of type DataValueNode
 void LoopNameListNode.insertElementAt(java.lang.Object obj, int index, DataValueNode val)
          Identical to the version above, except that the value to be padded into the loop values is chosen by the caller instead of being a dot ('.')
 void LoopNameListNode.addElement(java.lang.Object obj, DataValueNode val)
          Just like the Vector method of the same name.
 void LoopRowNode.setElementAt(DataValueNode val, int index)
          Just like the Vector method of the same name.
 void LoopRowNode.insertElementAt(DataValueNode val, int index)
          Just like the Vector method of the same name, but It will refuse to work if this row is already inside a DataLoopNode, and it will generate an exception.
 void LoopRowNode.addElement(DataValueNode val)
          Just like the Vector method of the same name, but It will refuse to work if this row is already inside a DataLoopNode, and it will generate an exception.
protected  void StarUnparser.writeDataValueNode(DataValueNode node, int indentLvl, int preSize, int postSize)
           
 

Constructors in EDU.bmrb.starlibj with parameters of type DataValueNode
DataItemNode(DataNameNode name, DataValueNode value)
          This constructor makes a new item with the given name and value.
DataValueNode(DataValueNode copyMe)
          Constructor - copy another DataValueNode.
TinyAbsDataValueNode(int l, short c, DataValueNode dvn)
           
TinyRelDataValueNode(int parLine, DataValueNode dvn)