All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.dotify.api.formatter.LayoutMasterBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.daisy.dotify.api.formatter;

/**
 * Provides a builder for a layout master.
 *
 * @author Joel Håkansson
 */
public interface LayoutMasterBuilder {

    /**
     * Adds a new template to the builder.
     *
     * @param condition a condition
     * @return returns a new page template builder
     */
    public PageTemplateBuilder newTemplate(Condition condition);

    /**
     * Sets the page area.
     *
     * @param properties the properties of the page area
     * @return returns a page area builder
     */
    public PageArea setPageArea(PageAreaProperties properties);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy