Class ParsedNodeBase

java.lang.Object
org.eclnt.jsfserver.util.pageparsing.ParsedNodeBase
All Implemented Interfaces:
Serializable, ICCComponentProperties

public class ParsedNodeBase extends Object implements Serializable, ICCComponentProperties
Information for each node that is created during parsing. The information directly reflects the information within the layout xml definition.
See Also:
  • Constructor Details

    • ParsedNodeBase

      public ParsedNodeBase()
  • Method Details

    • getId

      public String getId()
    • getName

      public String getName()
      Full name of tag, including prefix.
    • setName

      public void setName(String name)
    • getTagPrefix

      public String getTagPrefix()
      Prefix part of name.
    • getTagName

      public String getTagName()
      Name without prefix.
    • getAttributes

      public List<NodeAttributeValue> getAttributes()
    • getSubNodes

      public List<ParsedNodeBase> getSubNodes()
    • passAttributesFromSAXParser

      public void passAttributesFromSAXParser(Attributes attributes)
    • getAttributeValue

      public String getAttributeValue(String attribute)
    • setAttributeValue

      public void setAttributeValue(String attribute, String value)
    • createSubNode

      public ParsedNodeBase createSubNode()
    • dump

      public void dump(StringBuffer sb, int level)