Interface Frame
-
- All Superinterfaces:
DocumentElement,java.io.Serializable
- All Known Implementing Classes:
FrameImpl
public interface Frame extends java.io.Serializable, DocumentElement
The Interface Frame.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AreagetArea()Gets the area.BBoxgetBbox()Gets the bbox.java.lang.StringgetLabel()Gets the label of this frameOrigingetOrigin()Gets the origin.java.lang.BooleanisPrimary()Checks if a Frame is a primary one.java.lang.BooleanisVisible()Checks if a given Frame is visible.voidsetArea(Area area)Sets the area.voidsetBbox(BBox bbox)Sets the bbox.voidsetLabel(java.lang.String label)Sets the labelvoidsetOrigin(Origin origin)Sets the origin.voidsetPrimary(java.lang.Boolean primary)Sets the primary.voidsetVisible(java.lang.Boolean visible)Sets if a given Frame is visible.-
Methods inherited from interface com.priint.pubserver.metadata.base.DocumentElement
getId, getSizeAbsolute, getSizeRelative, getVisibleSizeAbsolute, getVisibleSizeRelative, setId, setSizeAbsolute, setSizeRelative, setVisibleSizeAbsolute, setVisibleSizeRelative
-
-
-
-
Method Detail
-
setOrigin
void setOrigin(Origin origin)
Sets the origin.- Parameters:
origin- the new origin- See Also:
Origin
-
isPrimary
java.lang.Boolean isPrimary()
Checks if a Frame is a primary one.- Returns:
- the boolean
-
setPrimary
void setPrimary(java.lang.Boolean primary)
Sets the primary.- Parameters:
primary- the new primary value
-
isVisible
java.lang.Boolean isVisible()
Checks if a given Frame is visible.- Returns:
- the boolean
-
setVisible
void setVisible(java.lang.Boolean visible)
Sets if a given Frame is visible.- Parameters:
visible- the new visible value
-
setLabel
void setLabel(java.lang.String label)
Sets the label- Parameters:
label- the label to set
-
getLabel
java.lang.String getLabel()
Gets the label of this frame- Returns:
- the label
-
-