Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.apache.jasper.compiler.Node
org.apache.jasper.compiler.Node.UninterpretedTag
public static class Node.UninterpretedTag
extends org.apache.jasper.compiler.Node
Nested Class Summary |
Field Summary |
Fields inherited from class org.apache.jasper.compiler.Node | |
attrs , beginJavaLine , body , endJavaLine , innerClassName , localName , namedAttributeNodes , nonTaglibXmlnsAttrs , parent , qName , startMark , taglibAttrs , text |
Constructor Summary | |
|
Method Summary | |
void |
|
Node.JspAttribute[] | |
void |
|
Methods inherited from class org.apache.jasper.compiler.Node | |
getAttributeValue , getAttributes , getBeginJavaLine , getBody , getEndJavaLine , getInnerClassName , getLocalName , getNamedAttributeNode , getNamedAttributeNodes , getNonTaglibXmlnsAttributes , getParent , getQName , getRoot , getStart , getTaglibAttributes , getText , getTextAttribute , isDummy , setAttributes , setBeginJavaLine , setBody , setEndJavaLine , setInnerClassName |
public UninterpretedTag(String qName, String localName, Attributes attrs, Attributes nonTaglibXmlnsAttrs, Attributes taglibAttrs, org.apache.jasper.compiler.Mark start, org.apache.jasper.compiler.Node parent)
Constructor for Nodes parsed from XML syntax.
- Parameters:
qName
- The action's qualified namelocalName
- The action's local nameattrs
- The action's attributes whose name does not start with xmlnsnonTaglibXmlnsAttrs
- The action's xmlns attributes that do not represent tag librariestaglibAttrs
- The action's xmlns attributes that represent tag librariesstart
- The location of the jsp pageparent
- The enclosing node
public void accept(Node.Visitor v) throws JasperException
Selects and invokes a method in the visitor class based on the node type. This is abstract and should be overrode by the extending classes.
- Parameters:
v
- The visitor class