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

dk.apaq.printing.core.Printer Maven / Gradle / Ivy

package dk.apaq.printing.core;

/**
 *
 * @author michael
 */
public interface Printer {

    String getId();
    String getName();
    String getDescription();

    boolean supportsColor();
    boolean supportDatatype(PrinterJob.DataType dataType);
    Paper[] getSupportedPapers();
    Margin getPhysicalMargin(Paper paperSize);

    PrinterState getState();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy