You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
893 B
55 lines
893 B
/*
|
|
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.print.event;
|
|
|
|
/**
|
|
*
|
|
* Class PrintEvent is the super class of all Print Service API events.
|
|
*/
|
|
|
|
public class PrintEvent extends java.util.EventObject {
|
|
|
|
private static final long serialVersionUID = 2286914924430763847L;
|
|
|
|
/**
|
|
* Constructs a PrintEvent object.
|
|
* @param source is the source of the event
|
|
* @throws IllegalArgumentException if <code>source</code> is
|
|
* <code>null</code>.
|
|
*/
|
|
public PrintEvent (Object source) {
|
|
super(source);
|
|
}
|
|
|
|
/**
|
|
* @return a message describing the event
|
|
*/
|
|
public String toString() {
|
|
return ("PrintEvent on " + getSource().toString());
|
|
}
|
|
|
|
}
|