C# Class Evaluator.Language

A base class for basic specifications of syntax for individual languages
Afficher le fichier Open project: swax/SwarmNLP

Méthodes publiques

Méthode Description
beginNamespace ( string namespaceName ) : string

Generates a statement to begin a namespace

beginType ( string typeName ) : string

Generates a statement to begin a type

endNamespace ( string namespaceName ) : string

Generates a statement to end a namespace

endType ( string typeName ) : string

Generates a statement to end a type

useStatement ( string assemblyName ) : string

Generates a statement to allow treatment of classes within an assembly/namespace as if they were local

Method Details

beginNamespace() public abstract méthode

Generates a statement to begin a namespace
public abstract beginNamespace ( string namespaceName ) : string
namespaceName string /// The name of the namespace ///
Résultat string

beginType() public abstract méthode

Generates a statement to begin a type
public abstract beginType ( string typeName ) : string
typeName string /// The name of the type ///
Résultat string

endNamespace() public abstract méthode

Generates a statement to end a namespace
public abstract endNamespace ( string namespaceName ) : string
namespaceName string /// The name of the namespace ///
Résultat string

endType() public abstract méthode

Generates a statement to end a type
public abstract endType ( string typeName ) : string
typeName string /// The name of the type ///
Résultat string

useStatement() public abstract méthode

Generates a statement to allow treatment of classes within an assembly/namespace as if they were local
public abstract useStatement ( string assemblyName ) : string
assemblyName string /// The name of the assembly to be treated as local ///
Résultat string