Method | Description | |
---|---|---|
GetParse ( ) : |
Returns a PhraseNode containing the node's parsed name.
|
|
Parse ( |
Parses the node's Name into words.
|
|
ProgramElementNode ( ) : System |
Creates a new ProgramElementNode in its default state.
|
|
ProgramElementNode ( string name ) : System |
Creates a new ProgramElementNode and sets Name to the supplied value.
|
|
ProgramElementNode ( string name, |
Creates a new ProgramElementNode and sets Name to the supplied value. Name is then parsed using the supplied IdSplitter.
|
|
ProgramElementNode ( string name, |
Creates a new ProgramElementNode and sets Name and ParsedName to the supplied values.
|
|
SetLocation ( Location location ) : void |
Sets the program location of the node.
|
|
ToPlainString ( ) : string |
Returns a string representation of the node without any SWUM markup.
|
|
ToString ( ) : string |
Returns a string representation of the node. This is simply the string representation of the ParsedName.
|
public Parse ( |
||
splitter | ||
return | void |
public ProgramElementNode ( string name ) : System | ||
name | string | The name of the program element. |
return | System |
public ProgramElementNode ( string name, |
||
name | string | The name of the program element. |
splitter | An IdSplitter to use to parse the name. | |
return | System |
public ProgramElementNode ( string name, |
||
name | string | The name of the program element. |
parsedName | A PhraseNode constructed from the program element's name. | |
return | System |
public SetLocation ( Location location ) : void | ||
location | Location | The program location of the node. |
return | void |