Interface BasicPage
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
Page
- All Known Implementing Classes:
BasicPageImpl,PageImpl
public interface BasicPage extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnsgetColumns()doublegetHeight()MarginsgetMargins()java.lang.StringgetNum()intgetUid()doublegetWidth()voidsetColumns(Columns columns)voidsetHeight(double height)voidsetMargins(Margins margins)voidsetNum(java.lang.String num)voidsetUid(int uid)voidsetWidth(double width)
-
-
-
Method Detail
-
getUid
int getUid()
- Returns:
- the uid
-
setUid
void setUid(int uid)
- Parameters:
uid- the uid to set
-
getNum
java.lang.String getNum()
- Returns:
- the num
-
setNum
void setNum(java.lang.String num)
- Parameters:
num- the num to set
-
getWidth
double getWidth()
- Returns:
- the width
-
setWidth
void setWidth(double width)
- Parameters:
width- the width to set
-
getHeight
double getHeight()
- Returns:
- the height
-
setHeight
void setHeight(double height)
- Parameters:
height- the height to set
-
getColumns
Columns getColumns()
- Returns:
- the columns
-
setColumns
void setColumns(Columns columns)
- Parameters:
columns- the columns to set
-
getMargins
Margins getMargins()
- Returns:
- the margins
-
setMargins
void setMargins(Margins margins)
- Parameters:
margins- the margins to set
-
-