Interface Page
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
PageImpl
public interface Page extends java.io.SerializableThe Interface Page.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DimensionsgetDimensions()Gets the dimensions.java.util.List<Guide>getGuides()Gets the guides.intgetId()Gets the id.intgetInteger()Gets the integer.java.lang.StringgetMasterpage()Gets the masterpage.java.lang.StringgetNumber()Gets the number.intgetOrdinal()Gets the ordinal.PageTemplategetPagetemplate()Gets the pagetemplate.java.lang.StringgetPrefix()Gets the prefix.RecordgetRecord()Gets the record.PageTypegetType()Gets the type.intgetUid()Gets the uid.voidsetDimensions(Dimensions dimensions)Sets the dimensions.voidsetGuides(java.util.List<Guide> guides)Sets the guides.voidsetId(int id)Sets the id.voidsetInteger(int integer)Sets the integer.voidsetMasterpage(java.lang.String masterpage)Sets the masterpage.voidsetNumber(java.lang.String number)Sets the number.voidsetOrdinal(int ordinal)Sets the ordinal.voidsetPagetemplate(PageTemplate pagetemplate)Sets the pagetemplate.voidsetPrefix(java.lang.String prefix)Sets the prefix.voidsetRecord(Record record)Sets the record.voidsetType(PageType type)Sets the type.voidsetUid(int uid)Sets the uid.
-
-
-
Method Detail
-
getId
int getId()
Gets the id.- Returns:
- the id
-
setId
void setId(int id)
Sets the id.- Parameters:
id- the new id
-
getUid
int getUid()
Gets the uid.- Returns:
- the uid
-
setUid
void setUid(int uid)
Sets the uid.- Parameters:
uid- the new uid
-
getPrefix
java.lang.String getPrefix()
Gets the prefix.- Returns:
- the prefix
-
setPrefix
void setPrefix(java.lang.String prefix)
Sets the prefix.- Parameters:
prefix- the new prefix
-
getNumber
java.lang.String getNumber()
Gets the number.- Returns:
- the number
-
setNumber
void setNumber(java.lang.String number)
Sets the number.- Parameters:
number- the new number
-
getInteger
int getInteger()
Gets the integer.- Returns:
- the integer
-
setInteger
void setInteger(int integer)
Sets the integer.- Parameters:
integer- the new integer
-
getOrdinal
int getOrdinal()
Gets the ordinal.- Returns:
- the ordinal
-
setOrdinal
void setOrdinal(int ordinal)
Sets the ordinal.- Parameters:
ordinal- the new ordinal
-
getRecord
Record getRecord()
Gets the record.- Returns:
- the record
-
setRecord
void setRecord(Record record)
Sets the record.- Parameters:
record- the new record
-
getType
PageType getType()
Gets the type.- Returns:
- the type
-
setType
void setType(PageType type)
Sets the type.- Parameters:
type- the new type
-
getMasterpage
java.lang.String getMasterpage()
Gets the masterpage.- Returns:
- the masterpage
-
setMasterpage
void setMasterpage(java.lang.String masterpage)
Sets the masterpage.- Parameters:
masterpage- the new masterpage
-
getPagetemplate
PageTemplate getPagetemplate()
Gets the pagetemplate.- Returns:
- the pagetemplate
-
setPagetemplate
void setPagetemplate(PageTemplate pagetemplate)
Sets the pagetemplate.- Parameters:
pagetemplate- the new pagetemplate
-
getDimensions
Dimensions getDimensions()
Gets the dimensions.- Returns:
- the dimensions
-
setDimensions
void setDimensions(Dimensions dimensions)
Sets the dimensions.- Parameters:
dimensions- the new dimensions
-
getGuides
java.util.List<Guide> getGuides()
Gets the guides.- Returns:
- the guides
-
setGuides
void setGuides(java.util.List<Guide> guides)
Sets the guides.- Parameters:
guides- the new guides
-
-