Package org.eclipse.ui.forms
Interface IDetailsPage
-
- All Superinterfaces:
IFormPart
,IPartSelectionListener
public interface IDetailsPage extends IFormPart, IPartSelectionListener
This interface should be implemented by clients providing pages to handle object types in DetailsPart. Most of the life cycle is the same as for the IFormPart. The page is a part selection listener since selections in the master part will be passed to the currently visible page.- Since:
- 3.0
- See Also:
DetailsPart
,MasterDetailsBlock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createContents(Composite parent)
Creates the contents of the page in the provided parent.-
Methods inherited from interface org.eclipse.ui.forms.IFormPart
commit, dispose, initialize, isDirty, isStale, refresh, setFocus, setFormInput
-
Methods inherited from interface org.eclipse.ui.forms.IPartSelectionListener
selectionChanged
-
-
-
-
Method Detail
-
createContents
void createContents(Composite parent)
Creates the contents of the page in the provided parent.- Parameters:
parent
- the parent to create the page in
-
-