net.refractions.udig.style.sld
Interface IEditorPage

All Known Subinterfaces:
IStyleEditorPage
All Known Implementing Classes:
StyleEditorPage, StyleEditorPageAdapter, StyleThemePage, StyleXMLPage

public interface IEditorPage


Method Summary
 void applyData(java.lang.Object data)
           
 Point computeSize()
          Computes a size for this page's UI component.
 boolean isValid()
          Returns whether this dialog page is in a valid state.
 boolean okToLeave()
          Checks whether it is alright to leave this page.
 boolean performApply()
          Executed immediately before an apply action.
 boolean performCancel()
          Notifies that the container of this preference page has been canceled.
 boolean performOk()
          Notifies that the OK button of this page's container has been pressed.
 void refresh()
           
 void setContainer(IEditorPageContainer dialog)
           
 void setSize(Point size)
          Sets the size of this page's UI component.
 

Method Detail

computeSize

Point computeSize()
Computes a size for this page's UI component.

Returns:
the size of the preference page encoded as new Point(width,height), or (0,0) if the page doesn't currently have any UI component

isValid

boolean isValid()
Returns whether this dialog page is in a valid state.

Returns:
true if the page is in a valid state, and false if invalid

okToLeave

boolean okToLeave()
Checks whether it is alright to leave this page.

Returns:
false to abort page flipping and the have the current page remain visible, and true to allow the page flip

performCancel

boolean performCancel()
Notifies that the container of this preference page has been canceled.

Returns:
false to abort the container's cancel procedure and true to allow the cancel to happen

performOk

boolean performOk()
Notifies that the OK button of this page's container has been pressed.

Returns:
false to abort the container's OK processing and true to allow the OK to happen

performApply

boolean performApply()
Executed immediately before an apply action.


setSize

void setSize(Point size)
Sets the size of this page's UI component.

Parameters:
size - the size of the preference page encoded as new Point(width,height)

setContainer

void setContainer(IEditorPageContainer dialog)

applyData

void applyData(java.lang.Object data)

refresh

void refresh()