FileDocCategorySizeDatePackage
Printer.javaAPI DocExample314Thu Nov 08 00:23:46 GMT 2001com.ora.rmibook.chapter4

Printer.java

package com.ora.rmibook.chapter4;


import java.rmi.*;


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