C# 클래스 ABB.Swum.Nodes.FieldDeclarationNode

Represents a field declaration in the program.
상속: ProgramElementNode
파일 보기 프로젝트 열기: abb-iss/Swum.NET 1 사용 예제들

공개 메소드들

메소드 설명
AssignStructuralInformation ( IdSplitter splitter, Tagger tagger ) : void

Assigns the attributes of this field related to its structure within the program.

FieldDeclarationNode ( string name ) : System

Creates a new FieldDeclarationNode with the given name, and no context.

FieldDeclarationNode ( string name, FieldContext context ) : System

Creates a new FieldDeclarationNode.

ToString ( ) : string

Creates a string representation, including the field's type and name.

메소드 상세

AssignStructuralInformation() 공개 메소드

Assigns the attributes of this field related to its structure within the program.
public AssignStructuralInformation ( IdSplitter splitter, Tagger tagger ) : void
splitter IdSplitter An IdSplitter to split the words of identifiers.
tagger Tagger A part-of-speech tagger
리턴 void

FieldDeclarationNode() 공개 메소드

Creates a new FieldDeclarationNode with the given name, and no context.
public FieldDeclarationNode ( string name ) : System
name string The name of the declared field.
리턴 System

FieldDeclarationNode() 공개 메소드

Creates a new FieldDeclarationNode.
public FieldDeclarationNode ( string name, FieldContext context ) : System
name string The name of the declared field.
context FieldContext The surrounding context of the field.
리턴 System

ToString() 공개 메소드

Creates a string representation, including the field's type and name.
public ToString ( ) : string
리턴 string