FileDocCategorySizeDatePackage
Printer.javaAPI DocExample323Thu Nov 08 00:22:42 GMT 2001com.ora.rmibook.chapter12.printer

Printer.java

package com.ora.rmibook.chapter12.printer;


import java.rmi.*;


public interface Printer extends PrinterConstants, Remote {
    public boolean printerAvailable()
        throws RemoteException;
    public boolean printDocument(DocumentDescription document)
        throws RemoteException, PrinterException;
}