diff options
Diffstat (limited to 'libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java')
-rw-r--r-- | libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java b/libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java index a41e213..665db52 100644 --- a/libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java +++ b/libjava/classpath/javax/print/event/PrintServiceAttributeEvent.java @@ -1,4 +1,4 @@ -/* PrintServiceAttributeEvent.java -- +/* PrintServiceAttributeEvent.java -- Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,19 +42,19 @@ import javax.print.attribute.PrintServiceAttributeSet; /** - * <code>PrintServiceAttributeEvent</code>s are generated by a + * <code>PrintServiceAttributeEvent</code>s are generated by a * <code>PrintService</code> to inform registered listeners that * its associated attributes have changed. - * + * * @author Michael Koch (konqueror@gmx.de) */ public class PrintServiceAttributeEvent extends PrintEvent { private PrintServiceAttributeSet attributes; - + /** * Constructs a <code>PrintServiceAttributeEvent</code> object. - * + * * @param source the source of this event * @param attributes the attribute changes being reported */ @@ -67,7 +67,7 @@ public class PrintServiceAttributeEvent extends PrintEvent /** * Returns the print service that generated this event. - * + * * @return The print service. */ public PrintService getPrintService() @@ -77,7 +77,7 @@ public class PrintServiceAttributeEvent extends PrintEvent /** * Returns the changed attributes this event reports. - * + * * @return The changed attributes. */ public PrintServiceAttributeSet getAttributes() |