Basic EditorModel for SoapUI editors
| Modifiers | Name | Description |
|---|---|---|
interface |
EditorModel.EditorModelListener |
Interface for listeners to editor text changes |
| Type Params | Return Type | Name and description |
|---|---|---|
|
void |
addEditorModelListener(EditorModel.EditorModelListener editorModelListener)Adds a listener for text changes |
|
java.lang.String |
getEditorText()Returns the text to display in the editor |
|
Settings |
getSettings()Return the settings to use for storing customizations (line-numbers, etc) |
|
void |
removeEditorModelListener(EditorModel.EditorModelListener editorModelListener)Removes a listener for text changes |
|
void |
setEditorText(java.lang.String text)Save the text in the editor, usually called when the contents of the editor have changed |
Adds a listener for text changes
Returns the text to display in the editor
Return the settings to use for storing customizations (line-numbers, etc)
Removes a listener for text changes
Save the text in the editor, usually called when the contents of the editor have changed
text - the editor text to save