KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > print > MultiDocPrintService


1 /*
2  * @(#)MultiDocPrintService.java 1.4 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.print;
9
10 import java.util.Map JavaDoc;
11
12 import javax.print.attribute.Attribute JavaDoc;
13 import javax.print.event.PrintServiceAttributeListener JavaDoc;
14
15
16  /** Interface MultiPrintService is the factory for a MultiDocPrintJob.
17   * A MultiPrintService
18   * describes the capabilities of a Printer and can be queried regarding
19   * a printer's supported attributes.
20   */

21 public interface MultiDocPrintService extends PrintService JavaDoc {
22      
23     /**
24      * Create a job which can print a multiDoc.
25      * @return a MultiDocPrintJob
26      */

27     public MultiDocPrintJob JavaDoc createMultiDocPrintJob();
28
29 }
30
Popular Tags