C# Класс ABB.Swum.Nodes.TypeNode

Represents a type within a program.
Наследование: ProgramElementNode
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
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