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

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

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

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

Accept the visitor. *

Value ( IInternalContextAdapter context ) : Object

Computes the product of the two args. Returns null if either arg is null or if either arg is not an integer

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

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

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

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

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

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

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

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

Computes the product of the two args. Returns null if either arg is null or if either arg is not an integer
public Value ( IInternalContextAdapter context ) : Object
context IInternalContextAdapter
Результат Object