Class AbstractPropertySection
java.lang.Object
org.eclipse.ui.views.properties.tabbed.AbstractPropertySection
- All Implemented Interfaces:
ISection
- Direct Known Subclasses:
AbstractOverridableTabListPropertySection
,AdvancedPropertySection
An abstract implementation of a section in a tab in the tabbed property sheet
page.
- Author:
- Anthony Hunter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The standard label width when labels for sections line up on the left hand side of the composite. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notifies the section that its controls are about to be hidden.void
Notifies the section that its controls are about to be shown.void
createControls
(Composite parent, TabbedPropertySheetPage aTabbedPropertySheetPage) Creates the controls for the section.void
dispose()
Dispose this section.int
Returns the minimum height needed by this section.getPart()
Get the current workbench selection.Get the widget factory for the property sheet page.void
refresh()
Refresh the contents of the controls displayed in this section.void
setInput
(IWorkbenchPart part, ISelection selection) Notifies the section that the workbench selection has changed.boolean
Determine whether this section would like extra height space in case there is some left.
-
Field Details
-
STANDARD_LABEL_WIDTH
public static final int STANDARD_LABEL_WIDTHThe standard label width when labels for sections line up on the left hand side of the composite.- See Also:
-
-
Constructor Details
-
AbstractPropertySection
public AbstractPropertySection()
-
-
Method Details
-
getWidgetFactory
Get the widget factory for the property sheet page.- Returns:
- the widget factory.
-
getSelection
Get the current workbench selection.- Returns:
- the current workbench selection.
-
getPart
- Returns:
- Returns the part.
-
createControls
Description copied from interface:ISection
Creates the controls for the section.Clients should take advantage of the widget factory provided by the framework to achieve a common look between property sections.
- Specified by:
createControls
in interfaceISection
- Parameters:
parent
- the parent composite for the section.aTabbedPropertySheetPage
- the tabbed property sheet page.- See Also:
-
setInput
Description copied from interface:ISection
Notifies the section that the workbench selection has changed. -
aboutToBeShown
public void aboutToBeShown()Description copied from interface:ISection
Notifies the section that its controls are about to be shown. It is expected that sections enable domain related functions in this method, most commonly add listeners.Since the controls are not visible, the section should wait for the refresh() before updating the section controls.
- Specified by:
aboutToBeShown
in interfaceISection
-
aboutToBeHidden
public void aboutToBeHidden()Description copied from interface:ISection
Notifies the section that its controls are about to be hidden. It is expected that sections disable domain related functions in this method, most commonly remove listeners.- Specified by:
aboutToBeHidden
in interfaceISection
-
dispose
public void dispose()Description copied from interface:ISection
Dispose this section. -
getMinimumHeight
public int getMinimumHeight()Description copied from interface:ISection
Returns the minimum height needed by this section. A return value ofSWT.DEFAULT
indicates that no minimum height is defined.- Specified by:
getMinimumHeight
in interfaceISection
- Returns:
- the minimum height needed by this section.
-
shouldUseExtraSpace
public boolean shouldUseExtraSpace()Description copied from interface:ISection
Determine whether this section would like extra height space in case there is some left. Normally this is true when the section is the last to be displayed on a tab or is the only section on a tab.- Specified by:
shouldUseExtraSpace
in interfaceISection
- Returns:
true
if this section would like extra height space.
-
refresh
public void refresh()Description copied from interface:ISection
Refresh the contents of the controls displayed in this section.
-