Package org.daisy.dotify.api.formatter
Interface PageTemplateBuilder
-
- All Known Implementing Classes:
PageTemplate
public interface PageTemplateBuilderProvides a page template builder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddToFooter(FieldList obj)Adds a line to the header.voidaddToHeader(FieldList obj)Adds a line to the header.voidaddToLeftMargin(MarginRegion margin)Adds a column to the left margin of the page.voidaddToRightMargin(MarginRegion margin)Adds a column to the right margin of the page.
-
-
-
Method Detail
-
addToHeader
void addToHeader(FieldList obj)
Adds a line to the header.- Parameters:
obj- the field list
-
addToFooter
void addToFooter(FieldList obj)
Adds a line to the header.- Parameters:
obj- the field list
-
addToLeftMargin
void addToLeftMargin(MarginRegion margin)
Adds a column to the left margin of the page.- Parameters:
margin- the column
-
addToRightMargin
void addToRightMargin(MarginRegion margin)
Adds a column to the right margin of the page.- Parameters:
margin- the column
-
-