| org.eclipse.ui.IViewLayout
All known Subclasses: org.eclipse.ui.internal.ViewLayout,
IViewLayout | public interface IViewLayout (Code) | | Represents the layout info for a view or placeholder in an
IPageLayout .
This interface is not intended to be implemented by clients.
since: 3.0 |
Method Summary | |
public boolean | getShowTitle() Returns whether the view shows its title. | public boolean | isCloseable() Returns whether the view is closeable. | public boolean | isMoveable() Returns whether the view is moveable. | public boolean | isStandalone() Returns whether the view is a standalone view. | public void | setCloseable(boolean closeable) Sets whether the view is closeable. | public void | setMoveable(boolean moveable) Sets whether the view is moveable. |
isCloseable | public boolean isCloseable()(Code) | | Returns whether the view is closeable.
The default is true .
true if the view is closeable, false if not |
isMoveable | public boolean isMoveable()(Code) | | Returns whether the view is moveable.
The default is true .
true if the view is moveable, false if not |
setCloseable | public void setCloseable(boolean closeable)(Code) | | Sets whether the view is closeable.
Parameters: closeable - true if the view is closeable, false if not |
setMoveable | public void setMoveable(boolean moveable)(Code) | | Sets whether the view is moveable.
Parameters: moveable - true if the view is moveable, false if not |
|
|