java.lang.Object
java.util.EventObject
javax.print.event.PrintEvent
javax.print.event.PrintJobAttributeEvent
- 所有已实现的接口:
-
Serializable
类
PrintJobAttributeEvent
封装了一个事件,一个 PrintService
报告给客户端,以通知客户端一个或多个 PrintJob
的打印属性已更改。
- 参见:
-
Field Summary
Fields declared in class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionPrintJobAttributeEvent
(DocPrintJob source, PrintJobAttributeSet attributes) 构造一个PrintJobAttributeEvent
对象。 -
Method Summary
Modifier and TypeMethodDescription确定已更改的打印属性及其新值。确定此打印作业事件所涉及的PrintJob
。Methods declared in class javax.print.event.PrintEvent
toString
Methods declared in class java.util.EventObject
getSource
-
Constructor Details
-
PrintJobAttributeEvent
构造一个PrintJobAttributeEvent
对象。- 参数:
-
source
- 生成此事件的打印作业 -
attributes
- 正在报告的属性更改 - 抛出:
-
IllegalArgumentException
- 如果source
是null
-
-
Method Details
-
getPrintJob
确定此打印作业事件所涉及的PrintJob
。- 返回:
-
PrintJob
对象
-
getAttributes
确定已更改的打印属性及其新值。- 返回:
- 包含已更改的打印作业属性的新值的属性。返回的集合可能不可修改。
-