- /*
- * @(#)PrintEvent.java 1.6 03/12/19
- *
- * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
- * SUN 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());
- }
-
- }