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

org.daisy.dotify.api.paper.AbstractPageFormat Maven / Gradle / Ivy

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

/**
 * Provides an abstract page format.
 *
 * @author Joel Håkansson
 */
public abstract class AbstractPageFormat implements PageFormat {

    @Override
    public SheetPaperFormat asSheetPaperFormat() {
        throw new ClassCastException();
    }

    @Override
    public TractorPaperFormat asTractorPaperFormat() {
        throw new ClassCastException();
    }

    @Override
    public RollPaperFormat asRollPaperFormat() {
        throw new ClassCastException();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy