C# Class GUI.EditorView.Window.HandleTextChange

Indicates the actions to be performed to get the text from the instance and to set it into the instance
Show file Open project: ERTMSSolutions/ERTMSFormalSpecs

Public Methods

Method Description
GetText ( ) : string

The way text is retrieved from the instance

RemoveUselessCharacters ( string source ) : string

Removes all useless characters from a source string

SetText ( string text ) : void

The way text is set back in the instance

Protected Methods

Method Description
HandleTextChange ( DataDictionary.ModelElement instance, string identifyingMessage ) : System

Constructor

Method Details

GetText() public abstract method

The way text is retrieved from the instance
public abstract GetText ( ) : string
return string

HandleTextChange() protected method

Constructor
protected HandleTextChange ( DataDictionary.ModelElement instance, string identifyingMessage ) : System
instance DataDictionary.ModelElement
identifyingMessage string
return System

RemoveUselessCharacters() public method

Removes all useless characters from a source string
public RemoveUselessCharacters ( string source ) : string
source string
return string

SetText() public abstract method

The way text is set back in the instance
public abstract SetText ( string text ) : void
text string
return void