Package org.eclipse.ui
Interface IViewLayout
public interface IViewLayout
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
- Restriction:
- This interface is not intended to be implemented by clients.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns whether the view shows its title.booleanReturns whether the view is closeable.booleanReturns whether the view is moveable.booleanReturns whether the view is a standalone view.voidsetCloseable(boolean closeable) Sets whether the view is closeable.voidsetMoveable(boolean moveable) Sets whether the view is moveable.
- 
Method Details- 
isCloseableboolean isCloseable()Returns whether the view is closeable. The default istrue.- Returns:
- trueif the view is closeable,- falseif not
 
- 
setCloseablevoid setCloseable(boolean closeable) Sets whether the view is closeable.- Parameters:
- closeable-- trueif the view is closeable,- falseif not
 
- 
isMoveableboolean isMoveable()Returns whether the view is moveable. The default istrue.- Returns:
- trueif the view is moveable,- falseif not
 
- 
setMoveablevoid setMoveable(boolean moveable) Sets whether the view is moveable.- Parameters:
- moveable-- trueif the view is moveable,- falseif not
 
- 
isStandaloneboolean isStandalone()Returns whether the view is a standalone view.- Returns:
- true if standalone, false otherwise.
- See Also:
 
- 
getShowTitleboolean getShowTitle()Returns whether the view shows its title. This is only applicable to standalone views.- Returns:
- true if the title is shown, false otherwise.
- See Also:
 
 
-