Class ASTDirective
java.lang.Object
org.apache.velocity.runtime.parser.node.SimpleNode
org.apache.velocity.runtime.parser.node.ASTDirective
- All Implemented Interfaces:
Cloneable
,Node
,Renderable
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$
- Author:
- Jason van Zyl, Geir Magnusson Jr., Kasper Nielsen
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the name of this directive.int
more prefix getterget indentation postfixget indentation prefixinit
(InternalContextAdapter context, Object data) jjtAccept
(StandardParserVisitor visitor, Object data) literal()
Returns the string "#directive_name(...)".boolean
render
(InternalContextAdapter context, Writer writer) void
setDirectiveName
(String str) Sets the directive name.void
setPostfix
(String postfix) set indentation postfixvoid
set indentation prefixtoString()
Methods inherited from class org.apache.velocity.runtime.parser.node.SimpleNode
childrenAccept, cleanupParserAndTokens, clone, clone, dump, dump, dump, evaluate, execute, getColumn, getFirstToken, getFirstTokenImage, getInfo, getLastToken, getLastTokenImage, getLine, getLocation, getParser, getRuntimeServices, getTemplate, getTemplateName, getType, isInvalid, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, saveTokenImages, setFirstToken, setInfo, setInvalid, toString, value
-
Constructor Details
-
ASTDirective
public ASTDirective(int id) - Parameters:
id
-
-
ASTDirective
- Parameters:
p
-id
-
-
-
Method Details
-
jjtAccept
- Specified by:
jjtAccept
in interfaceNode
- Overrides:
jjtAccept
in classSimpleNode
- Parameters:
visitor
-data
-- Returns:
- The Node execution result object.
- See Also:
-
init
- Specified by:
init
in interfaceNode
- Overrides:
init
in classSimpleNode
- Parameters:
context
-data
-- Returns:
- The init result.
- Throws:
TemplateInitException
- See Also:
-
setPrefix
set indentation prefix- Parameters:
prefix
-
-
getPrefix
get indentation prefix- Returns:
- indentation prefix
-
setPostfix
set indentation postfix- Parameters:
postfix
-
-
getPostfix
get indentation postfix- Returns:
- indentation prefix
-
getMorePrefix
more prefix getter- Returns:
- more prefix
-
getDirectiveType
public int getDirectiveType() -
render
public boolean render(InternalContextAdapter context, Writer writer) throws IOException, MethodInvocationException, ResourceNotFoundException, ParseErrorException - Specified by:
render
in interfaceNode
- Specified by:
render
in interfaceRenderable
- Overrides:
render
in classSimpleNode
- Parameters:
context
-writer
-- Returns:
- True if the node rendered successfully.
- Throws:
IOException
MethodInvocationException
ResourceNotFoundException
ParseErrorException
- See Also:
-
setDirectiveName
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
Gets the name of this directive.- Returns:
- The name of this directive.
-
toString
- Overrides:
toString
in classSimpleNode
-
literal
Returns the string "#directive_name(...)". Arguments literals are not rendered. This method is only used for displaying the VTL stacktrace when a rendering error is encountered when runtime.log.track_location is true.- Specified by:
literal
in interfaceNode
- Overrides:
literal
in classSimpleNode
- Returns:
- See Also:
-