Class ASTIfStatement
- java.lang.Object
-
- org.apache.velocity.runtime.parser.node.SimpleNode
-
- org.apache.velocity.runtime.parser.node.ASTIfStatement
-
- All Implemented Interfaces:
Cloneable,Node,Renderable
public class ASTIfStatement extends SimpleNode
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.
-
-
Constructor Summary
Constructors Constructor Description ASTIfStatement(int id)ASTIfStatement(Parser p, int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPostfix()get indentation postfixStringgetPrefix()get indentation prefixObjectinit(InternalContextAdapter context, Object data)ObjectjjtAccept(StandardParserVisitor visitor, Object data)voidprocess(InternalContextAdapter context, StandardParserVisitor visitor)booleanrender(InternalContextAdapter context, Writer writer)voidsetPostfix(String postfix)set indentation postfixvoidsetPrefix(String prefix)set indentation prefix-
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, literal, saveTokenImages, setFirstToken, setInfo, setInvalid, toString, toString, value
-
-
-
-
Constructor Detail
-
ASTIfStatement
public ASTIfStatement(int id)
- Parameters:
id-
-
ASTIfStatement
public ASTIfStatement(Parser p, int id)
- Parameters:
p-id-
-
-
Method Detail
-
jjtAccept
public Object jjtAccept(StandardParserVisitor visitor, Object data)
- Specified by:
jjtAcceptin interfaceNode- Overrides:
jjtAcceptin 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:
initin interfaceNode- Overrides:
initin classSimpleNode- Returns:
- The init result.
- Throws:
TemplateInitException- See Also:
Node.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:
- prefix
-
setPostfix
public void setPostfix(String postfix)
set indentation postfix- Parameters:
postfix-
-
getPostfix
public String getPostfix()
get indentation postfix- Returns:
- postfix
-
render
public boolean render(InternalContextAdapter context, Writer writer) throws IOException, MethodInvocationException, ResourceNotFoundException, ParseErrorException
- Specified by:
renderin interfaceNode- Specified by:
renderin interfaceRenderable- Overrides:
renderin classSimpleNode- Returns:
- True if the node rendered successfully.
- Throws:
IOExceptionMethodInvocationExceptionResourceNotFoundExceptionParseErrorException- See Also:
SimpleNode.render(org.apache.velocity.context.InternalContextAdapter, java.io.Writer)
-
process
public void process(InternalContextAdapter context, StandardParserVisitor visitor)
- Parameters:
context-visitor-
-
-