edu.wpi.cs.dsrg.xmldb.xat.common.dompattern
Class TextNodeImp

java.lang.Object
  |
  +--edu.wpi.cs.dsrg.xmldb.xat.common.dompattern.DOMPatternNodeImp
        |
        +--edu.wpi.cs.dsrg.xmldb.xat.common.dompattern.TextNodeImp

public class TextNodeImp
extends DOMPatternNodeImp
implements TextNode

This Class defines the TextNode. TextNode has a tagValue that represents a text string. The tagName that is set to null.

Since:
1.0
See Also:
Serialized Form

Fields inherited from class edu.wpi.cs.dsrg.xmldb.xat.common.dompattern.DOMPatternNodeImp
canceledOut, children, parent, tagName, tagValue
 
Constructor Summary
TextNodeImp()
          The default TextNodeImp constructor.
TextNodeImp(java.lang.String text)
          The TextNodeImp constructor using given string as tag value.
TextNodeImp(java.lang.String name, java.lang.String value)
          The TextNodeImp constructor using given strings as tagName and tagValue.
 
Methods inherited from class edu.wpi.cs.dsrg.xmldb.xat.common.dompattern.DOMPatternNodeImp
addChild, addChild, deleteChild, getChild, getChildren, getParent, getTagName, getTagValue, isCanceledOut, setCanceledOut, setChild, setParent, setTagName, setTagValue, setTagValue, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TextNodeImp

public TextNodeImp()
The default TextNodeImp constructor.
Since:
1.0

TextNodeImp

public TextNodeImp(java.lang.String text)
The TextNodeImp constructor using given string as tag value.
Parameters:
text - The string used to construct a TextNodeImp.
Since:
1.0

TextNodeImp

public TextNodeImp(java.lang.String name,
                   java.lang.String value)
The TextNodeImp constructor using given strings as tagName and tagValue.
Parameters:
name - The tag name used to construct a TextNodeImp.
name - The tag value used to construct a TextNodeImp.
Since:
1.0