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
파일 보기 프로젝트 열기: rasmus-toftdahl-olesen/NVelocity 1 사용 예제들

공개 메소드들

메소드 설명
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