org.apache.velocity.runtime.parser.node
Class ASTDirective
java.lang.Object
   org.apache.velocity.runtime.parser.node.SimpleNode
org.apache.velocity.runtime.parser.node.SimpleNode
       org.apache.velocity.runtime.parser.node.ASTDirective
org.apache.velocity.runtime.parser.node.ASTDirective
- All Implemented Interfaces: 
- Node, Renderable
- public class ASTDirective 
- extends SimpleNode
This class is responsible for handling the pluggable
 directives in VTL.
 For example :  #foreach()
 Please look at the Parser.jjt file which is
 what controls the generation of this class.
- Version:
- $Id: ASTDirective.java 736677 2009-01-22 15:39:02Z nbubna $
- Author:
- Jason van Zyl, Geir Magnusson Jr., Kasper Nielsen
 
| Fields inherited from class org.apache.velocity.runtime.parser.node.SimpleNode | 
| children, first, id, info, invalid, last, log, parent, parser, rsvc, state, templateName | 
 
 
 
| Methods inherited from class org.apache.velocity.runtime.parser.node.SimpleNode | 
| childrenAccept, dump, evaluate, execute, getColumn, getFirstToken, getInfo, getLastToken, getLine, getLocation, getRuntimeServices, getTemplateName, getType, isInvalid, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, literal, setFirstToken, setInfo, setInvalid, toString, value | 
 
 
ASTDirective
public ASTDirective(int id)
- Parameters:
- id-
ASTDirective
public ASTDirective(Parser p,
                    int id)
- Parameters:
- p-
- id-
jjtAccept
public Object jjtAccept(ParserVisitor visitor,
                        Object data)
- 
- Specified by:
- jjtAcceptin interface- Node
- Overrides:
- jjtAcceptin class- SimpleNode
 
- 
- Returns:
- The Node execution result object.
- See Also:
- SimpleNode.jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object)
 
init
public Object init(InternalContextAdapter context,
                   Object data)
            throws TemplateInitException
- 
- Specified by:
- initin interface- Node
- Overrides:
- initin class- SimpleNode
 
- 
- Returns:
- The init result.
- Throws:
- TemplateInitException
- See Also:
- SimpleNode.init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)
 
render
public boolean render(InternalContextAdapter context,
                      Writer writer)
               throws IOException,
                      MethodInvocationException,
                      ResourceNotFoundException,
                      ParseErrorException
- 
- Specified by:
- renderin interface- Node
- Specified by:
- renderin interface- Renderable
- Overrides:
- renderin class- SimpleNode
 
- 
- Returns:
- True if the node rendered successfully.
- Throws:
- IOException
- MethodInvocationException
- ResourceNotFoundException
- ParseErrorException
- See Also:
- SimpleNode.render(org.apache.velocity.context.InternalContextAdapter, java.io.Writer)
 
setDirectiveName
public void setDirectiveName(String str)
- Sets the directive name.  Used by the parser.  This keeps us from having to
   dig it out of the token stream and gives the parse the change to override.
 
- 
- Parameters:
- str-
 
getDirectiveName
public String getDirectiveName()
- Gets the name of this directive.
 
- 
- Returns:
- The name of this directive.
 
toString
public String toString()
- 
- Overrides:
- toStringin class- SimpleNode
 
- 
- Since:
- 1.5
 
Copyright © 2000-2010 The Apache Software Foundation. All Rights Reserved.