< prev index next >

src/java.desktop/share/classes/javax/print/event/PrintEvent.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -24,31 +24,33 @@
  */
 
 package javax.print.event;
 
 /**
- *
- * Class PrintEvent is the super class of all Print Service API events.
+ * Class {@code PrintEvent} is the super class of all Print Service API events.
  */
-
 public class PrintEvent extends java.util.EventObject {
 
+    /**
+     * Use serialVersionUID from JDK 1.4 for interoperability.
+     */
     private static final long serialVersionUID = 2286914924430763847L;
 
     /**
-     * Constructs a PrintEvent object.
+     * Constructs a {@code PrintEvent} object.
+     *
      * @param source is the source of the event
-     * @throws IllegalArgumentException if {@code source} is
-     *         {@code null}.
+     * @throws IllegalArgumentException if {@code source} is {@code null}
      */
     public PrintEvent (Object source) {
         super(source);
     }
 
     /**
+     * Returns a string representation of this {@code PrintEvent}.
+     *
      * @return a message describing the event
      */
     public String toString() {
         return ("PrintEvent on " + getSource().toString());
     }
-
 }
< prev index next >