Interface MGenericTile<T extends MUIElement>
-
- All Superinterfaces:
MApplicationElement
,MElementContainer<T>
,MLocalizable
,MUIElement
- All Known Subinterfaces:
MArea
,MCompositePart
,MPartSashContainer
public interface MGenericTile<T extends MUIElement> extends MElementContainer<T>
A representation of the model object 'Generic Tile'.This type defines the base type for 'tile' type containers. These containers are expected to only show all their visible children at the same time.
- Since:
- 1.0
- Restriction:
- This interface is not intended to be implemented by clients.
The following features are supported:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isHorizontal()
Returns the value of the 'Horizontal' attribute.void
setHorizontal(boolean value)
Sets the value of the 'Horizontal
' attribute.-
Methods inherited from interface org.eclipse.e4.ui.model.application.MApplicationElement
getContributorURI, getElementId, getPersistedState, getTags, getTransientData, setContributorURI, setElementId
-
Methods inherited from interface org.eclipse.e4.ui.model.application.ui.MElementContainer
getChildren, getSelectedElement, setSelectedElement
-
Methods inherited from interface org.eclipse.e4.ui.model.application.ui.MLocalizable
updateLocalization
-
Methods inherited from interface org.eclipse.e4.ui.model.application.ui.MUIElement
getAccessibilityPhrase, getContainerData, getCurSharedRef, getLocalizedAccessibilityPhrase, getParent, getRenderer, getVisibleWhen, getWidget, isOnTop, isToBeRendered, isVisible, setAccessibilityPhrase, setContainerData, setCurSharedRef, setOnTop, setParent, setRenderer, setToBeRendered, setVisible, setVisibleWhen, setWidget
-
-
-
-
Method Detail
-
isHorizontal
boolean isHorizontal()
Returns the value of the 'Horizontal' attribute.This field determines which direction the tiling should take; 'true' for horizontal' tiling, 'false' for vertical.
- Returns:
- the value of the 'Horizontal' attribute.
- See Also:
setHorizontal(boolean)
-
setHorizontal
void setHorizontal(boolean value)
Sets the value of the 'Horizontal
' attribute.- Parameters:
value
- the new value of the 'Horizontal' attribute.- See Also:
isHorizontal()
-
-