Interface Frame
-
- All Superinterfaces:
SimpleGraphicElement
- All Known Implementing Classes:
AbstractFrame
,FrameSilverpeasV5
public interface Frame extends SimpleGraphicElement
Frame is an interface to be implemented by a graphic element to print a frame in an html format.- Version:
- 1.0
- Author:
- mraverdy&lloiseau
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addBottom(String bottom)
add a string on the bottom of the frame.void
addTitle(String title)
add a title to the frame.void
addTop(String top)
add a string on the top of the frame.String
printAfter()
Method declarationString
printBefore()
Method declarationString
printMiddle()
Method declaration-
Methods inherited from interface org.silverpeas.core.web.util.viewgenerator.html.SimpleGraphicElement
print
-
-
-
-
Method Detail
-
addTitle
void addTitle(String title)
add a title to the frame.
-
addTop
void addTop(String top)
add a string on the top of the frame.
-
addBottom
void addBottom(String bottom)
add a string on the bottom of the frame.
-
printBefore
String printBefore()
Method declaration- Returns:
-
printMiddle
String printMiddle()
Method declaration- Returns:
-
printAfter
String printAfter()
Method declaration- Returns:
-
-