Interface IEASyEditorPage
-
- All Known Implementing Classes:
AbstractEASyEditorPage,AttributeValuesPage,ConfigurationPage,DelegatingEasyEditorPage,InstantiatorConfigPage,ModelEditorPage,ProjectConfigurationPage
public interface IEASyEditorPageRepresents the actual parent class for an EASy table editor.- Author:
- Holger Eichelberger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.swt.widgets.CompositegetContentPane()Returns the content pane of this editor page.org.eclipse.swt.widgets.DisplaygetDisplay()Returns theDisplaythat is associated with the receiver.java.lang.StringgetPageText()Returns the text label for the editor page.booleanisDisposed()Returns whether the editor page is disposed.voidrefresh()Refreshes the shown content of the current project.voidsetDirty()Informs allIEASyPageListenerthat this page became dirty.
-
-
-
Method Detail
-
setDirty
void setDirty()
Informs allIEASyPageListenerthat this page became dirty.
-
getContentPane
org.eclipse.swt.widgets.Composite getContentPane()
Returns the content pane of this editor page.- Returns:
- The content pane of this editor page
-
getDisplay
org.eclipse.swt.widgets.Display getDisplay()
Returns theDisplaythat is associated with the receiver.- Returns:
- the receiver's display (may be null if disposed)
-
getPageText
java.lang.String getPageText()
Returns the text label for the editor page. This is for creating labels/tabs in an editor.- Returns:
- The text label for the editor page (must not be null).
-
refresh
void refresh()
Refreshes the shown content of the current project. This method should be calles if the contant inside the editor has been changed and should also affect other editor parts.
-
isDisposed
boolean isDisposed()
Returns whether the editor page is disposed.- Returns:
trueif the editor page is disposed,falseelse
-
-