Interface Placeholder
-
- All Superinterfaces:
DocumentElement,java.io.Serializable
- All Known Implementing Classes:
PlaceholderImpl
public interface Placeholder extends DocumentElement
The Interface Placeholder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtgetExt()Gets the ext.java.util.List<Frame>getFrames()Gets the frames.java.util.List<FunctionVariable>getFunctionVariables()Gets the function variable definitions for this placeholderImageContentgetImageContent()Gets the image content.java.lang.StringgetInfos1()Gets the infos 1.java.lang.StringgetInfos2()Gets the infos 2.java.lang.StringgetName()Gets the name.java.lang.StringgetOverset()Gets the overset.ParentsgetParents()Gets the parents.intgetPlaceholderId()Gets the placeholder id.RecordgetRecord()Gets the record.StategetState()Gets the state.TextContentgetTextContent()Gets the text content.PlaceholderTypegetType()Gets the type.voidsetExt(Ext ext)Sets the ext.voidsetFrames(java.util.List<Frame> frames)Sets the frames.voidsetFunctionVariables(java.util.List<FunctionVariable> functionVariables)Sets the function variable definitions for this placeholdervoidsetImageContent(ImageContent imageContent)Sets the image contentvoidsetInfos1(java.lang.String infos1)Sets the infos 1.voidsetInfos2(java.lang.String infos2)Sets the infos 2.voidsetName(java.lang.String name)Sets the name.voidsetOverset(java.lang.String overset)Sets the overset.voidsetParents(Parents parents)Sets the parents.voidsetPlaceholderId(int placeholderId)Sets the placeholder id.voidsetRecord(Record record)Sets the record.voidsetState(State state)Sets the state.voidsetTextContent(TextContent textContent)Sets the text contentvoidsetType(PlaceholderType type)Sets the type.-
Methods inherited from interface com.priint.pubserver.metadata.base.DocumentElement
getId, getSizeAbsolute, getSizeRelative, getVisibleSizeAbsolute, getVisibleSizeRelative, setId, setSizeAbsolute, setSizeRelative, setVisibleSizeAbsolute, setVisibleSizeRelative
-
-
-
-
Method Detail
-
getPlaceholderId
int getPlaceholderId()
Gets the placeholder id.- Returns:
- the placeholder id
-
setPlaceholderId
void setPlaceholderId(int placeholderId)
Sets the placeholder id.- Parameters:
placeholderId- the new placeholder id
-
getName
java.lang.String getName()
Gets the name.- Returns:
- the name
-
setName
void setName(java.lang.String name)
Sets the name.- Parameters:
name- the new name
-
getType
PlaceholderType getType()
Gets the type.- Returns:
- the type
- See Also:
PlaceholderType
-
setType
void setType(PlaceholderType type)
Sets the type.- Parameters:
type- the new type- See Also:
PlaceholderType
-
getOverset
java.lang.String getOverset()
Gets the overset.- Returns:
- the overset
-
setOverset
void setOverset(java.lang.String overset)
Sets the overset.- Parameters:
overset- the new overset
-
getInfos1
java.lang.String getInfos1()
Gets the infos 1.- Returns:
- the infos 1
-
setInfos1
void setInfos1(java.lang.String infos1)
Sets the infos 1.- Parameters:
infos1- the new infos 1
-
getInfos2
java.lang.String getInfos2()
Gets the infos 2.- Returns:
- the infos 2
-
setInfos2
void setInfos2(java.lang.String infos2)
Sets the infos 2.- Parameters:
infos2- the new infos 2
-
setRecord
void setRecord(Record record)
Sets the record.- Parameters:
record- the new record- See Also:
Record
-
setParents
void setParents(Parents parents)
Sets the parents.- Parameters:
parents- the new parents- See Also:
Parents
-
setFrames
void setFrames(java.util.List<Frame> frames)
Sets the frames.- Parameters:
frames- the new frames- See Also:
Frame
-
setState
void setState(State state)
Sets the state.- Parameters:
state- the new state- See Also:
State
-
getTextContent
TextContent getTextContent()
Gets the text content.- Returns:
- the text content
- See Also:
TextContent
-
setTextContent
void setTextContent(TextContent textContent)
Sets the text content- Parameters:
textContent- the new textcontent- See Also:
TextContent
-
getImageContent
ImageContent getImageContent()
Gets the image content.- Returns:
- the image content
- See Also:
ImageContent
-
setImageContent
void setImageContent(ImageContent imageContent)
Sets the image content- Parameters:
imageContent- the new imagecontent- See Also:
ImageContent
-
getFunctionVariables
java.util.List<FunctionVariable> getFunctionVariables()
Gets the function variable definitions for this placeholder
- Returns:
- function variables for this placeholder
- See Also:
FunctionVariable
-
setFunctionVariables
void setFunctionVariables(java.util.List<FunctionVariable> functionVariables)
Sets the function variable definitions for this placeholder
- Parameters:
functionVariables- new function variable definitions for this placeholder- See Also:
FunctionVariable
-
-