Package org.daisy.dotify.api.formatter
Interface PageTemplateBuilder
-
public interface PageTemplateBuilder
Provides a page template builder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addToFooter(FieldList obj)
Adds a line to the headervoid
addToHeader(FieldList obj)
Adds a line to the headervoid
addToLeftMargin(MarginRegion margin)
Adds a column to the left margin of the page.void
addToRightMargin(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
-
-