Uses of Class
org.simoes.lpd.common.PrintJob

Packages that use PrintJob
org.simoes.lpd.handler   
org.simoes.lpd.util   
 

Uses of PrintJob in org.simoes.lpd.handler
 

Methods in org.simoes.lpd.handler with parameters of type PrintJob
 boolean PrinterHandler.process(PrintJob printJob)
          Writes the printJob to the default Printer.
 boolean HandlerInterface.process(PrintJob printJob)
          Processes the PrintJob in some manner.
 boolean FileHandler.process(PrintJob printJob)
          Writes the printJob to disk using the jobName and jobId.
 

Uses of PrintJob in org.simoes.lpd.util
 

Methods in org.simoes.lpd.util that return PrintJob
 PrintJob QueuedPrintJob.getPrintJob()
           
 PrintJob PrintQueueWithTableModel.remove(long id)
          remove print job from queue.
 PrintJob PrintQueue.remove(long id)
          remove print job from queue.
 

Methods in org.simoes.lpd.util with parameters of type PrintJob
 void Queues.addPrintJob(java.lang.String queueName, PrintJob printJob)
          Adds a printJob to the queue specified by queueName.
 long PrintQueueWithTableModel.add(PrintJob printJob)
          add print job to queue.
 long PrintQueue.add(PrintJob printJob)
          add print job to queue.
 

Constructors in org.simoes.lpd.util with parameters of type PrintJob
QueuedPrintJob(long id, PrintJob printJob)
          Constructor for the QueuedPrintJob.