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

org.freehep.graphicsio.MultiPageDocument Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
package org.freehep.graphicsio;

import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.io.IOException;

import org.freehep.graphics2d.TagString;

public interface MultiPageDocument {

    public void setMultiPage(boolean isMultiPage);

    public boolean isMultiPage();

    /** Set the headline of all pages. */
    public void setHeader(Font font, TagString left, TagString center,
            TagString right, int underlineThickness);

    /** Set the footline of all pages. */
    public void setFooter(Font font, TagString left, TagString center,
            TagString right, int underlineThickness);

    /** Start the next page */
    public void openPage(Component component) throws IOException;

    public void openPage(Dimension size, String title) throws IOException;

    /** End the current page. */
    public void closePage() throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy