net.aerith.misao.xml.relaxer
Class XmlItem

java.lang.Object
  |
  +--net.aerith.misao.xml.IONode
        |
        +--net.aerith.misao.xml.relaxer.XmlItem
Direct Known Subclasses:
XmlItem

public class XmlItem
extends IONode
implements java.io.Serializable, IRNode

XmlItem is generated by Relaxer based on pixy.rlx. This class is derived from:

 <elementRule role="item" type="string"/>
 <tag name="item">
   <attribute name="key" required="true" type="string"/>
 </tag>
 

See Also:
Serialized Form

Field Summary
private  java.lang.String content
           
private  java.lang.String key
           
private  IRNode parentRNode
           
private  RContext rContext
           
 
Constructor Summary
XmlItem()
          Creates a XmlItem.
XmlItem(org.w3c.dom.Document doc)
          Creates a XmlItem by the Document doc.
XmlItem(org.w3c.dom.Element element)
          Creates a XmlItem by the Element element.
XmlItem(RStack stack)
          Creates a XmlItem by the Stack stack that contains Elements.
 
Method Summary
 java.lang.String getContent()
          Gets the String property content.
 java.lang.String getKey()
          Gets the String property key.
 IRNode getParentRNode()
          Gets the IRNode property parentRNode.
 RContext getRContext()
          Gets the RContext property rContext.
 RContext getRContextResolved()
          Gets the property "rContext" which is resolved recursively.
 IRNode[] getRNodes()
          Gets child RNodes.
private  void init(org.w3c.dom.Element element)
           
static boolean isMatch(org.w3c.dom.Element element)
          Tests if a Element element is valid for the XmlItem.
static boolean isMatch(RStack stack)
          Tests if elements contained in a Stack stack is valid for the XmlItem.
static boolean isMatchHungry(RStack stack)
          Tests if elements contained in a Stack stack is valid for the XmlItem.
 void makeElement(org.w3c.dom.Node parent)
          Creates a DOM representation of the object.
 void setContent(java.lang.String content)
          Sets the String property content.
 void setKey(java.lang.String key)
          Sets the String property key.
 void setParentRNode(IRNode parentRNode)
          Sets the IRNode property parentRNode.
 void setRContext(RContext rContext)
          Sets the RContext property rContext.
 void setup(org.w3c.dom.Document doc)
          Initializes the XmlItem by the Document doc.
 void setup(org.w3c.dom.Element element)
          Initializes the XmlItem by the Element element.
 void setup(RStack stack)
          Initializes the XmlItem by the Stack stack that contains Elements.
 
Methods inherited from class net.aerith.misao.xml.IONode
read, read, translateFrom, translateTo, write, write
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

content

private java.lang.String content

key

private java.lang.String key

parentRNode

private IRNode parentRNode

rContext

private RContext rContext
Constructor Detail

XmlItem

public XmlItem()
Creates a XmlItem.

XmlItem

public XmlItem(RStack stack)
Creates a XmlItem by the Stack stack that contains Elements. This constructor is supposed to be used internally by the Relaxer system.
Parameters:
stack -  

XmlItem

public XmlItem(org.w3c.dom.Document doc)
Creates a XmlItem by the Document doc.
Parameters:
doc -  

XmlItem

public XmlItem(org.w3c.dom.Element element)
Creates a XmlItem by the Element element.
Parameters:
element -  
Method Detail

setup

public void setup(org.w3c.dom.Document doc)
Initializes the XmlItem by the Document doc.
Overrides:
setup in class IONode
Parameters:
doc -  

setup

public void setup(org.w3c.dom.Element element)
Initializes the XmlItem by the Element element.
Parameters:
element -  

setup

public void setup(RStack stack)
Initializes the XmlItem by the Stack stack that contains Elements. This constructor is supposed to be used internally by the Relaxer system.
Parameters:
stack -  

init

private void init(org.w3c.dom.Element element)
Parameters:
element -  

makeElement

public void makeElement(org.w3c.dom.Node parent)
Creates a DOM representation of the object. Result is appended to the Node parent.
Overrides:
makeElement in class IONode
Parameters:
parent -  

getContent

public final java.lang.String getContent()
Gets the String property content.
Returns:
String

setContent

public final void setContent(java.lang.String content)
Sets the String property content.
Parameters:
content -  

getKey

public final java.lang.String getKey()
Gets the String property key.
Returns:
String

setKey

public final void setKey(java.lang.String key)
Sets the String property key.
Parameters:
key -  

getParentRNode

public final IRNode getParentRNode()
Gets the IRNode property parentRNode.
Specified by:
getParentRNode in interface IRNode
Returns:
IRNode

setParentRNode

public final void setParentRNode(IRNode parentRNode)
Sets the IRNode property parentRNode.
Specified by:
setParentRNode in interface IRNode
Parameters:
parentRNode -  

getRNodes

public IRNode[] getRNodes()
Gets child RNodes.
Specified by:
getRNodes in interface IRNode
Returns:
IRNode[]

getRContext

public final RContext getRContext()
Gets the RContext property rContext.
Specified by:
getRContext in interface IRNode
Returns:
RContext

setRContext

public final void setRContext(RContext rContext)
Sets the RContext property rContext.
Specified by:
setRContext in interface IRNode
Parameters:
rContext -  

getRContextResolved

public RContext getRContextResolved()
Gets the property "rContext" which is resolved recursively.
Specified by:
getRContextResolved in interface IRNode
Returns:
RContext

isMatch

public static boolean isMatch(org.w3c.dom.Element element)
Tests if a Element element is valid for the XmlItem.
Parameters:
element -  
Returns:
boolean

isMatch

public static boolean isMatch(RStack stack)
Tests if elements contained in a Stack stack is valid for the XmlItem. This mehtod is supposed to be used internally by the Relaxer system.
Parameters:
stack -  
Returns:
boolean

isMatchHungry

public static boolean isMatchHungry(RStack stack)
Tests if elements contained in a Stack stack is valid for the XmlItem. This method consumes the stack contents during matching operation. This mehtod is supposed to be used internally by the Relaxer system.
Parameters:
stack -  
Returns:
boolean