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

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

공개 메소드들

메소드 설명
TypeNode ( ) : System

Creates a new TypeNode with default values.

TypeNode ( string name, bool isPrimitive ) : System

Creates a new TypeNode.

TypeNode ( string name, bool isPrimitive, IdSplitter splitter ) : System

Creates a new TypeNode.

TypeNode ( string name, bool isPrimitive, IdSplitter splitter, Tagger tagger ) : System

Creates a new TypeNode.

TypeNode ( string name, bool isPrimitive, IdSplitter splitter, Tagger tagger, Location location ) : System

Creates a new TypeNode.

TypeNode ( string name, bool isPrimitive, PhraseNode parsedName ) : System

Creates a new TypeNode.

메소드 상세

TypeNode() 공개 메소드

Creates a new TypeNode with default values.
public TypeNode ( ) : System
리턴 System

TypeNode() 공개 메소드

Creates a new TypeNode.
public TypeNode ( string name, bool isPrimitive ) : System
name string The name of the type.
isPrimitive bool Whether the type is a primitive data type.
리턴 System

TypeNode() 공개 메소드

Creates a new TypeNode.
public TypeNode ( string name, bool isPrimitive, IdSplitter splitter ) : System
name string The name of the type.
isPrimitive bool Whether the type is a primitive data type.
splitter IdSplitter An IdSplitter to split the type name into words.
리턴 System

TypeNode() 공개 메소드

Creates a new TypeNode.
public TypeNode ( string name, bool isPrimitive, IdSplitter splitter, Tagger tagger ) : System
name string The name of the type.
isPrimitive bool Whether the type is a primitive data type.
splitter IdSplitter An IdSplitter to split the type name into words.
tagger Tagger A Tagger to tag the parts-of-speech of each word of the name.
리턴 System

TypeNode() 공개 메소드

Creates a new TypeNode.
public TypeNode ( string name, bool isPrimitive, IdSplitter splitter, Tagger tagger, Location location ) : System
name string The name of the type.
isPrimitive bool Whether the type is a primitive data type.
splitter IdSplitter An IdSplitter to split the type name into words.
tagger Tagger A Tagger to tag the parts-of-speech of each word of the name.
location Location The location of the type.
리턴 System

TypeNode() 공개 메소드

Creates a new TypeNode.
public TypeNode ( string name, bool isPrimitive, PhraseNode parsedName ) : System
name string The name of the type.
isPrimitive bool Whether the type is a primitive data type.
parsedName PhraseNode A PhraseNode representing the parsed type name.
리턴 System