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

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

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

import org.daisy.dotify.api.factory.Factory;
import org.daisy.dotify.api.table.Table;
import org.daisy.dotify.api.table.TableFilter;

import java.io.OutputStream;


/**
 * @author Bert Frees
 */
public interface FileFormat extends Factory, FileFormatProperties {

    /**
     * Returns true if the table is supported, false otherwise.
     *
     * @param table the table
     * @return returns true if the table is supported, false otherwise
     */
    public boolean supportsTable(Table table);

    /**
     * Gets the table filter.
     *
     * @return returns the table filter
     */
    public TableFilter getTableFilter();

    /**
     * Creates a new embosser writer.
     *
     * @param os the output stream
     * @return returns a new embosser writer
     */
    public EmbosserWriter newEmbosserWriter(OutputStream os);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy