Package ch.ivyteam.ivy.process.extension
Interface IIvyScriptEditor
-
public interface IIvyScriptEditor
Interface to an ivy script editor- Since:
- 28.08.2008
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JComponent
getComponent()
Gets the editor ui componentString
getText()
Gets the text of the editorvoid
setText(String text)
Sets the text of the editor
-
-
-
Method Detail
-
getText
String getText()
Gets the text of the editor- Returns:
- text
- API:
- This public API is available in Java.
-
setText
void setText(String text)
Sets the text of the editor- Parameters:
text
- the text to set- API:
- This public API is available in Java.
-
getComponent
JComponent getComponent()
Gets the editor ui component- Returns:
- editor ui component
- API:
- This public API is available in Java.
-
-