org.jboss.seam.xml.parser
Class SaxNode

java.lang.Object
  extended by org.jboss.seam.xml.parser.SaxNode

public class SaxNode
extends Object

represents an XML element

Author:
Stuart Douglas

Constructor Summary
SaxNode(String name, String uri, Map<String,String> attributes, SaxNode parent, String document, int lineNo)
           
 
Method Summary
 void addChild(SaxNode node)
           
 Map<String,String> getAttributes()
           
 List<SaxNode> getChildren()
           
 String getDocument()
           
 String getInnerText()
           
 int getLineNo()
           
 String getName()
           
 String getNamespaceUri()
           
 SaxNode getParent()
           
 void setInnerText(String innerText)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SaxNode

public SaxNode(String name,
               String uri,
               Map<String,String> attributes,
               SaxNode parent,
               String document,
               int lineNo)
Method Detail

getInnerText

public String getInnerText()

setInnerText

public void setInnerText(String innerText)

getNamespaceUri

public String getNamespaceUri()

getName

public String getName()

getAttributes

public Map<String,String> getAttributes()

getDocument

public String getDocument()

getLineNo

public int getLineNo()

addChild

public void addChild(SaxNode node)

getChildren

public List<SaxNode> getChildren()

getParent

public SaxNode getParent()


Copyright © 2010 Seam Framework. All Rights Reserved.