Uses of Interface
net.sf.paperclips.PageDecoration
-
Packages that use PageDecoration Package Description net.sf.paperclips Core classes for creating printable documents. -
-
Uses of PageDecoration in net.sf.paperclips
Classes in net.sf.paperclips that implement PageDecoration 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).Methods in net.sf.paperclips that return PageDecoration Modifier and Type Method Description PageDecoration
PagePrint. getFooter()
Returns the page footer.PageDecoration
PagePrint. getHeader()
Returns the page header.Methods in net.sf.paperclips with parameters of type PageDecoration 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.Constructors in net.sf.paperclips with parameters of type PageDecoration 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.
-