diff options
Diffstat (limited to 'libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java')
-rw-r--r-- | libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java b/libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java index 353c044ec1a..5ec7d8d63e1 100644 --- a/libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java +++ b/libjava/classpath/javax/print/attribute/standard/JobMediaSheetsCompleted.java @@ -1,4 +1,4 @@ -/* JobMediaSheetsCompleted.java -- +/* JobMediaSheetsCompleted.java -- Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -43,9 +43,9 @@ import javax.print.attribute.PrintJobAttribute; /** * The <code>JobMediaSheetsCompleted</code> printing attribute reports - * the number of media sheets already processed. + * the number of media sheets already processed. * <p> - * This attribute belongs to a group of job progress attributes which are + * This attribute belongs to a group of job progress attributes which are * reporting on the progress of a print job. * </p> * <p> @@ -53,14 +53,14 @@ import javax.print.attribute.PrintJobAttribute; * </p> * @see javax.print.attribute.standard.JobImpressionsCompleted * @see javax.print.attribute.standard.JobKOctetsProcessed - * + * * @author Michael Koch */ public final class JobMediaSheetsCompleted extends IntegerSyntax implements PrintJobAttribute { private static final long serialVersionUID = 1739595973810840475L; - + /** * Creates a <code>JobMediaSheetsCompleted</code> object. * @@ -75,13 +75,13 @@ public final class JobMediaSheetsCompleted extends IntegerSyntax if (value < 0) throw new IllegalArgumentException("value may not be less than 0"); } - + /** * Tests if the given object is equal to this object. * * @param obj the object to test * - * @return <code>true</code> if both objects are equal, + * @return <code>true</code> if both objects are equal, * <code>false</code> otherwise. */ public boolean equals(Object obj) |