Interface OperationPane
-
- All Superinterfaces:
SimpleGraphicElement
- All Known Implementing Classes:
AbstractOperationPane
,OperationPaneSilverpeasV5Web20
public interface OperationPane extends SimpleGraphicElement
The Browse interface gives us the skeleton for all funtionnalities we need to display typical WA browse bar- Version:
- 1.0
- Author:
- neysseri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addLine()
Method declarationvoid
addOperation(String iconPath, String label, String action)
Method declarationvoid
addOperation(String iconPath, String label, String action, String id)
Method declarationvoid
addOperationOfCreation(String iconPath, String label, String action)
void
addOperationOfCreation(String iconPath, String label, String action, String id)
void
clear()
Removes all operationsOperationPaneType
getType()
Gets the type :OperationPaneType
.int
nbOperations()
Method declarationvoid
setMultilang(org.silverpeas.kernel.bundle.LocalizationBundle multilang)
void
setType(OperationPaneType type)
Default type isOperationPaneType.component
.-
Methods inherited from interface org.silverpeas.core.web.util.viewgenerator.html.SimpleGraphicElement
print
-
-
-
-
Method Detail
-
setType
void setType(OperationPaneType type)
Default type isOperationPaneType.component
. It is possible to change the type through this method.- Parameters:
type
-
-
getType
OperationPaneType getType()
Gets the type :OperationPaneType
.
-
nbOperations
int nbOperations()
Method declaration- Returns:
-
addOperation
void addOperation(String iconPath, String label, String action)
Method declaration- Parameters:
iconPath
-label
-action
-
-
addOperation
void addOperation(String iconPath, String label, String action, String id)
Method declaration- Parameters:
iconPath
-label
-action
-id
- allows to easily identify operation
-
addOperationOfCreation
void addOperationOfCreation(String iconPath, String label, String action, String id)
-
addLine
void addLine()
Method declaration
-
setMultilang
void setMultilang(org.silverpeas.kernel.bundle.LocalizationBundle multilang)
-
clear
void clear()
Removes all operations
-
-