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

org.daisy.dotify.api.embosser.FileFormatProperties Maven / Gradle / Ivy

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

/**
 * @author Bert Frees
 */
public interface FileFormatProperties {

    /**
     * Returns true if 8-dot is supported, false otherwise.
     *
     * @return returns true if 8-dot is supported, false otherwise
     */
    public boolean supports8dot();

    /**
     * Returns true if duplex is supported, false otherwise.
     *
     * @return returns true if duplex is supported, false otherwise
     */
    public boolean supportsDuplex();

    /**
     * Returns true if a single file can contain multiple volumes, false otherwise.
     *
     * @return returns true if a single file can contain multiple volumes, false otherwise
     */
    public boolean supportsVolumes();

    /**
     * Gets the file extension.
     *
     * @return returns the file extension
     */
    public String getFileExtension();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy