org.apache.velocity.runtime.parser.node
public class ASTOrNode extends SimpleNode
Version: $Id: ASTOrNode.java,v 1.6.8.1 2004/03/03 23:22:59 geirm Exp $
| Constructor Summary | |
|---|---|
| ASTOrNode(int id) | |
| ASTOrNode(Parser p, int id) | |
| Method Summary | |
|---|---|
| boolean | evaluate(InternalContextAdapter context)
the logical or :
the rule :
left || null -> left
null || right -> right
null || null -> false
left || right -> left || right |
| Object | jjtAccept(ParserVisitor visitor, Object data) Accept the visitor. |
| Object | value(InternalContextAdapter context)
Returns the value of the expression.
|