Class ASTAddNode
java.lang.Object
org.apache.velocity.runtime.parser.node.SimpleNode
org.apache.velocity.runtime.parser.node.ASTBinaryOperator
org.apache.velocity.runtime.parser.node.ASTMathNode
org.apache.velocity.runtime.parser.node.ASTAddNode
- All Implemented Interfaces:
Cloneable
,Node
,Renderable
Handles number addition of nodes.
Please look at the Parser.jjt file which is what controls the generation of this class.
Please look at the Parser.jjt file which is what controls the generation of this class.
- Version:
- $Id$
- Author:
- Will Glass-Husain, Peter Romianowski, Jason van Zyl, Geir Magnusson Jr.
-
Field Summary
Fields inherited from class org.apache.velocity.runtime.parser.node.ASTMathNode
strictMode
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionget the string representing the mathematical operatorprotected Object
handleSpecial
(Object left, Object right, InternalContextAdapter context) Extension hook to allow special behavior by subclasses If this method returns a non-null value, that is returned, rather than the result of the math operation.perform
(Number left, Number right, InternalContextAdapter context) Performs the math operation represented by this node.Methods inherited from class org.apache.velocity.runtime.parser.node.ASTMathNode
init, jjtAccept, value
Methods inherited from class org.apache.velocity.runtime.parser.node.ASTBinaryOperator
literal
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, render, saveTokenImages, setFirstToken, setInfo, setInvalid, toString, toString
-
Constructor Details
-
ASTAddNode
public ASTAddNode(int id) - Parameters:
id
-
-
ASTAddNode
- Parameters:
p
-id
-
-
-
Method Details
-
handleSpecial
Description copied from class:ASTMathNode
Extension hook to allow special behavior by subclasses If this method returns a non-null value, that is returned, rather than the result of the math operation.- Overrides:
handleSpecial
in classASTMathNode
- Parameters:
left
-right
-context
-- Returns:
- special value
- See Also:
-
getLiteralOperator
Description copied from class:ASTBinaryOperator
get the string representing the mathematical operator- Specified by:
getLiteralOperator
in classASTBinaryOperator
- Returns:
- operator string
-
perform
Description copied from class:ASTMathNode
Performs the math operation represented by this node.- Specified by:
perform
in classASTMathNode
- Parameters:
left
-right
-context
-- Returns:
- computed value
- See Also:
-