Package | Description |
---|---|
org.apache.velocity | |
org.apache.velocity.app | |
org.apache.velocity.runtime | |
org.apache.velocity.runtime.directive | |
org.apache.velocity.runtime.parser.node |
Modifier and Type | Method and Description |
---|---|
void |
Template.merge(Context context,
Writer writer)
The AST node structure is merged with the
context to produce the final output.
|
void |
Template.merge(Context context,
Writer writer,
List<String> macroLibraries)
The AST node structure is merged with the
context to produce the final output.
|
Modifier and Type | Method and Description |
---|---|
boolean |
VelocityEngine.evaluate(Context context,
Writer writer,
String logTag,
Reader reader)
Renders the input reader using the context into the output writer.
|
static boolean |
Velocity.evaluate(Context context,
Writer writer,
String logTag,
Reader reader)
Renders the input reader using the context into the output writer.
|
boolean |
VelocityEngine.evaluate(Context context,
Writer out,
String logTag,
String instring)
renders the input string using the context into the output writer.
|
static boolean |
Velocity.evaluate(Context context,
Writer out,
String logTag,
String instring)
renders the input string using the context into the output writer.
|
boolean |
VelocityEngine.mergeTemplate(String templateName,
String encoding,
Context context,
Writer writer)
merges a template and puts the rendered stream into the writer
|
static boolean |
Velocity.mergeTemplate(String templateName,
String encoding,
Context context,
Writer writer)
Merges a template and puts the rendered stream into the writer
|
Modifier and Type | Method and Description |
---|---|
boolean |
Renderable.render(InternalContextAdapter context,
Writer writer) |
Modifier and Type | Method and Description |
---|---|
boolean |
RuntimeMacro.render(InternalContextAdapter context,
Writer writer,
Node node)
Velocimacro implementation is not known at the init time.
|
boolean |
Parse.render(InternalContextAdapter context,
Writer writer,
Node node)
iterates through the argument list and renders every
argument that is appropriate.
|
boolean |
Include.render(InternalContextAdapter context,
Writer writer,
Node node)
iterates through the argument list and renders every
argument that is appropriate.
|
boolean |
Evaluate.render(InternalContextAdapter context,
Writer writer,
Node node)
Evaluate the argument, convert to a String, and evaluate again
(with the same context).
|
abstract boolean |
Directive.render(InternalContextAdapter context,
Writer writer,
Node node)
How this directive is to be rendered
|
boolean |
RuntimeMacro.render(InternalContextAdapter context,
Writer writer,
Node node,
Renderable body)
This method is used with BlockMacro when we want to render a macro with a body AST.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SimpleNode.evaluate(InternalContextAdapter context) |
boolean |
Node.evaluate(InternalContextAdapter context) |
boolean |
ASTReference.evaluate(InternalContextAdapter context)
Computes boolean value of this reference
Returns the actual value of reference return type
boolean, and 'true' if value is not null
|
boolean |
ASTOrNode.evaluate(InternalContextAdapter context)
the logical or :
|
boolean |
ASTNotNode.evaluate(InternalContextAdapter context) |
boolean |
ASTNegateNode.evaluate(InternalContextAdapter context) |
boolean |
ASTNENode.evaluate(InternalContextAdapter context) |
boolean |
ASTExpression.evaluate(InternalContextAdapter context) |
boolean |
ASTElseIfStatement.evaluate(InternalContextAdapter context)
An ASTElseStatement is true if the expression
it contains evaluates to true.
|
boolean |
ASTComparisonNode.evaluate(InternalContextAdapter context) |
boolean |
ASTAndNode.evaluate(InternalContextAdapter context)
logical and :
|
Object |
SimpleNode.execute(Object o,
InternalContextAdapter context) |
Object |
Node.execute(Object o,
InternalContextAdapter context) |
Object |
ASTReference.execute(Object o,
InternalContextAdapter context)
gets an Object that 'is' the value of the reference
|
Object |
ASTMethod.execute(Object o,
InternalContextAdapter context)
invokes the method.
|
Object |
ASTIndex.execute(Object o,
InternalContextAdapter context) |
Object |
ASTIdentifier.execute(Object o,
InternalContextAdapter context) |
boolean |
SimpleNode.render(InternalContextAdapter context,
Writer writer) |
boolean |
Node.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTSetDirective.render(InternalContextAdapter context,
Writer writer)
puts the value of the RHS into the context under the key of the LHS
|
boolean |
ASTReference.render(InternalContextAdapter context,
Writer writer)
gets the value of the reference and outputs it to the
writer.
|
boolean |
ASTIfStatement.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTElseIfStatement.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTDirective.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTComment.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTBlock.render(InternalContextAdapter context,
Writer writer) |
boolean |
ASTReference.setValue(InternalContextAdapter context,
Object value)
Sets the value of a complex reference (something like $foo.bar)
Currently used by ASTSetReference()
|
Object |
SimpleNode.value(InternalContextAdapter context) |
Object |
Node.value(InternalContextAdapter context) |
Object |
ASTReference.value(InternalContextAdapter context) |
Object |
ASTOrNode.value(InternalContextAdapter context)
Returns the value of the expression.
|
Object |
ASTObjectArray.value(InternalContextAdapter context) |
Object |
ASTNotNode.value(InternalContextAdapter context) |
Object |
ASTNegateNode.value(InternalContextAdapter context) |
Object |
ASTMathNode.value(InternalContextAdapter context)
gets the two args and performs the operation on them
|
Object |
ASTMap.value(InternalContextAdapter context) |
Object |
ASTIntegerRange.value(InternalContextAdapter context)
does the real work.
|
Object |
ASTExpression.value(InternalContextAdapter context) |
Object |
ASTComparisonNode.value(InternalContextAdapter context) |
Object |
ASTAndNode.value(InternalContextAdapter context)
Returns the value of the expression.
|
Copyright © 2000–2021 The Apache Software Foundation. All rights reserved.