Interface Spread
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SpreadImpl
public interface Spread extends java.io.SerializableThe Interface Spread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentgetContent()Gets the content.DimensionsgetDimensions()Gets the dimensions.intgetId()Gets the id.java.util.List<Page>getPages()Gets the pages.RecordgetRecord()Gets the record.intgetUid()Gets the uid.voidsetContent(Content content)Sets the content.voidsetDimensions(Dimensions dimensions)Sets the dimensions.voidsetId(int id)Sets the id.voidsetPages(java.util.List<Page> pages)Sets the pages.voidsetRecord(Record record)Sets the record.voidsetUid(int uid)Sets the uid.
-
-
-
Method Detail
-
getRecord
Record getRecord()
Gets the record.- Returns:
- the record
-
setRecord
void setRecord(Record record)
Sets the record.- Parameters:
record- the new record
-
getContent
Content getContent()
Gets the content.- Returns:
- the content
-
setContent
void setContent(Content content)
Sets the content.- Parameters:
content- the new content
-
getDimensions
Dimensions getDimensions()
Gets the dimensions.- Returns:
- the dimensions
-
setDimensions
void setDimensions(Dimensions dimensions)
Sets the dimensions.- Parameters:
dimensions- the new dimensions
-
getPages
java.util.List<Page> getPages()
Gets the pages.- Returns:
- the pages
-
setPages
void setPages(java.util.List<Page> pages)
Sets the pages.- Parameters:
pages- the new pages
-
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
-
-