Serializable
public class PrintJobEvent extends PrintEvent
PrintJobEvent
encapsulates common events a print job reports to let a listener know of progress in the processing of the DocPrintJob
.Modifier and Type | Field | Description |
---|---|---|
static final int |
DATA_TRANSFER_COMPLETE |
The job is not necessarily printed yet, but the data has been transferred successfully from the client to the print service. |
static final int |
JOB_CANCELED |
The job was canceled by the PrintService . |
static final int |
JOB_COMPLETE |
The document is completely printed. |
static final int |
JOB_FAILED |
The print service reports that the job cannot be completed. |
static final int |
NO_MORE_EVENTS |
Not all print services may be capable of delivering interesting events, or even telling when a job is complete. |
static final int |
REQUIRES_ATTENTION |
The print service indicates that a - possibly transient - problem may require external intervention before the print service can continue. |
source
Constructor | Description |
---|---|
PrintJobEvent |
Constructs a PrintJobEvent object. |
Modifier and Type | Method | Description |
---|---|---|
int |
getPrintEventType() |
Gets the reason for this event. |
DocPrintJob |
getPrintJob() |
Determines the DocPrintJob to which this print job event pertains. |
toString
getSource
public static final int JOB_CANCELED
PrintService
.public static final int JOB_COMPLETE
public static final int JOB_FAILED
public static final int REQUIRES_ATTENTION
public static final int NO_MORE_EVENTS
JOB_COMPLETE
have NOT been received before receiving this message, the only inference that should be drawn is that the print service does not support delivering such an event.public static final int DATA_TRANSFER_COMPLETE
public PrintJobEvent(DocPrintJob source, int reason)
PrintJobEvent
object.source
- a DocPrintJob
objectreason
- an int specifying the reasonIllegalArgumentException
- if source
is null
public int getPrintEventType()
public DocPrintJob getPrintJob()
DocPrintJob
to which this print job event pertains.DocPrintJob
object that represents the print job that reports the events encapsulated by this PrintJobEvent
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/print/event/PrintJobEvent.html