Interface Window
-
- All Superinterfaces:
SimpleGraphicElement
- All Known Implementing Classes:
AbstractWindow
,WindowWeb20V5
,WindowWithContextualDiv
public interface Window extends SimpleGraphicElement
The Window interface gives us the skeleton for all funtionnalities we need to display typical WA window- Version:
- 1.0
- Author:
- neysseri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addBody(String body)
Method declarationBrowseBar
getBrowseBar()
Method declarationOperationPane
getOperationPane()
Method declarationvoid
init(GraphicElementFactory gef)
Method declarationboolean
isBrowseBarVisible()
Indicates if this Window should display a Browsebar.boolean
isPopup()
String
printAfter()
Print the end of the window in an html format.String
printBefore()
Print the beginning of the window in an html format.void
setBrowseBarVisibility(boolean browseBarVisible)
Defines if this Window should display a Browsebar.void
setPopup(boolean popup)
void
setWidth(String width)
Method declaration-
Methods inherited from interface org.silverpeas.core.web.util.viewgenerator.html.SimpleGraphicElement
print
-
-
-
-
Method Detail
-
init
void init(GraphicElementFactory gef)
Method declaration- Parameters:
gef
-
-
addBody
void addBody(String body)
Method declaration- Parameters:
body
-
-
getBrowseBar
BrowseBar getBrowseBar()
Method declaration- Returns:
-
getOperationPane
OperationPane getOperationPane()
Method declaration- Returns:
-
setWidth
void setWidth(String width)
Method declaration- Parameters:
width
-
-
printBefore
String printBefore()
Print the beginning of the window in an html format.- Returns:
- The html based line code
-
printAfter
String printAfter()
Print the end of the window in an html format.- Returns:
- The html based line code
-
isBrowseBarVisible
boolean isBrowseBarVisible()
Indicates if this Window should display a Browsebar.- Returns:
- true if this Window should display a Browsebar - false otherwise.
-
setBrowseBarVisibility
void setBrowseBarVisibility(boolean browseBarVisible)
Defines if this Window should display a Browsebar.- Parameters:
browseBarVisible
- set to true if this Window should display a Browsebar - false otherwise.
-
isPopup
boolean isPopup()
-
setPopup
void setPopup(boolean popup)
-
-