C# Класс NVelocity.Runtime.Parser.Node.ASTAndNode

Please look at the Parser.jjt file which is what controls the generation of this class. *
Наследование: NVelocity.Runtime.Parser.Node.SimpleNode
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ASTAndNode ( Parser p, int id ) : System
ASTAndNode ( int id ) : System
Accept ( IParserVisitor visitor, Object data ) : Object

Accept the visitor.

Evaluate ( IInternalContextAdapter context ) : bool

logical and : null && right = false left && null = false null && null = false

Value ( IInternalContextAdapter context ) : Object

Returns the value of the expression. Since the value of the expression is simply the boolean result of evaluate(), lets return that.

Описание методов

ASTAndNode() публичный Метод

public ASTAndNode ( Parser p, int id ) : System
p Parser
id int
Результат System

ASTAndNode() публичный Метод

public ASTAndNode ( int id ) : System
id int
Результат System

Accept() публичный Метод

Accept the visitor.
public Accept ( IParserVisitor visitor, Object data ) : Object
visitor IParserVisitor
data Object
Результат Object

Evaluate() публичный Метод

logical and : null && right = false left && null = false null && null = false
public Evaluate ( IInternalContextAdapter context ) : bool
context IInternalContextAdapter
Результат bool

Value() публичный Метод

Returns the value of the expression. Since the value of the expression is simply the boolean result of evaluate(), lets return that.
public Value ( IInternalContextAdapter context ) : Object
context IInternalContextAdapter
Результат Object