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
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$
- Author:
- Jason van Zyl, Geir Magnusson Jr., Kasper Nielsen
-
-
Constructor Summary
Constructors Constructor Description ASTDirective(int id)
ASTDirective(Parser p, int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDirectiveName()
Gets the name of this directive.int
getDirectiveType()
String
getMorePrefix()
more prefix getterString
getPostfix()
get indentation postfixString
getPrefix()
get indentation prefixObject
init(InternalContextAdapter context, Object data)
Object
jjtAccept(StandardParserVisitor visitor, Object data)
String
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
setPrefix(String prefix)
set indentation prefixString
toString()
-
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 Detail
-
ASTDirective
public ASTDirective(int id)
- Parameters:
id
-
-
ASTDirective
public ASTDirective(Parser p, int id)
- Parameters:
p
-id
-
-
-
Method Detail
-
jjtAccept
public Object jjtAccept(StandardParserVisitor visitor, Object data)
- Specified by:
jjtAccept
in interfaceNode
- Overrides:
jjtAccept
in classSimpleNode
- Returns:
- The Node execution result object.
- See Also:
SimpleNode.jjtAccept(org.apache.velocity.runtime.parser.node.StandardParserVisitor, java.lang.Object)
-
init
public Object init(InternalContextAdapter context, Object data) throws TemplateInitException
- Specified by:
init
in interfaceNode
- Overrides:
init
in classSimpleNode
- Returns:
- The init result.
- Throws:
TemplateInitException
- See Also:
SimpleNode.init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)
-
setPrefix
public void setPrefix(String prefix)
set indentation prefix- Parameters:
prefix
-
-
getPrefix
public String getPrefix()
get indentation prefix- Returns:
- indentation prefix
-
setPostfix
public void setPostfix(String postfix)
set indentation postfix- Parameters:
postfix
-
-
getPostfix
public String getPostfix()
get indentation postfix- Returns:
- indentation prefix
-
getMorePrefix
public String 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
- 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:
toString
in classSimpleNode
-
literal
public String 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:
Node.literal()
-
-