Package | Description |
---|---|
net.sf.paperclips |
Core classes for creating printable documents.
|
Modifier and Type | Class | Description |
---|---|---|
class |
PageNumberPageDecoration |
A PageDecoration which displays the page number.
|
class |
SimplePageDecoration |
A PageDecoration which displays the same decoration on every page (ignoring
the page number).
|
Modifier and Type | Method | Description |
---|---|---|
PageDecoration |
PagePrint.getFooter() |
Returns the page footer.
|
PageDecoration |
PagePrint.getHeader() |
Returns the page header.
|
Modifier and Type | Method | Description |
---|---|---|
void |
PagePrint.setFooter(PageDecoration footer) |
Sets the page footer to the argument.
|
void |
PagePrint.setHeader(PageDecoration header) |
Sets the page header to the argument.
|
Constructor | Description |
---|---|
PagePrint(PageDecoration header,
int headerGap,
Print body) |
Constructs a PagePrint with the given header and body.
|
PagePrint(PageDecoration header,
int headerGap,
Print body,
int footerGap,
PageDecoration footer) |
Constructs a PagePrint with the given body, header and footer.
|
PagePrint(PageDecoration header,
Print body) |
Constructs a PagePrint with the given header and body.
|
PagePrint(PageDecoration header,
Print body,
PageDecoration footer) |
Constructs a PagePrint with the given body, header and footer.
|
PagePrint(Print body,
int footerGap,
PageDecoration footer) |
Constructs a PagePrint with the given body, header and footer.
|
PagePrint(Print body,
PageDecoration footer) |
Constructs a PagePrint with the given body and footer.
|
PagePrint(Print body,
PageDecoration header,
PageDecoration footer) |
Deprecated.
PagePrint(PageDecoration, Print, PageDecoration) instead.
|