Class ASTBlock
- java.lang.Object
-
- org.apache.velocity.runtime.parser.node.SimpleNode
-
- org.apache.velocity.runtime.parser.node.ASTBlock
-
- All Implemented Interfaces:
Cloneable
,Node
,Renderable
public class ASTBlock extends SimpleNode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPostfix()
get indentation postfixString
getPrefix()
get indentation prefixObject
init(InternalContextAdapter context, Object data)
Object
jjtAccept(StandardParserVisitor visitor, Object data)
boolean
render(InternalContextAdapter context, Writer writer)
void
setMorePostfix(String morePosffix)
void
setPostfix(String postfix)
set indentation postfixvoid
setPrefix(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
-
ASTBlock
public ASTBlock(int id)
- Parameters:
id
-
-
ASTBlock
public ASTBlock(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:
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:
- indentation prefix
-
setMorePostfix
public void setMorePostfix(String morePosffix)
-
setPostfix
public void setPostfix(String postfix)
set indentation postfix- Parameters:
postfix
-
-
getPostfix
public String getPostfix()
get indentation postfix- Returns:
- indentation prefix
-
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)
-
-