summaryrefslogtreecommitdiff
path: root/libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java')
-rw-r--r--libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java b/libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java
index 5be3fc0a6f2..583db4e24da 100644
--- a/libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java
+++ b/libjava/classpath/javax/print/attribute/standard/JobImpressionsSupported.java
@@ -43,13 +43,13 @@ import javax.print.attribute.SupportedValuesAttribute;
/**
- * The <code>JobImpressionsSupported</code> printing attribute specifies the
- * supported range of values for the
+ * The <code>JobImpressionsSupported</code> printing attribute specifies the
+ * supported range of values for the
* {@link javax.print.attribute.standard.JobImpressions} attribute.
* <p>
* <b>IPP Compatibility:</b> JobImpressionsSupported is an IPP 1.1 attribute.
* </p>
- *
+ *
* @author Michael Koch (konqueror@gmx.de)
* @author Wolfgang Baer (WBaer@gmx.de)
*/
@@ -59,7 +59,7 @@ public final class JobImpressionsSupported extends SetOfIntegerSyntax
private static final long serialVersionUID = -4887354803843173692L;
/**
- * Constructs a <code>JobImpressionsSupported</code> object with the
+ * Constructs a <code>JobImpressionsSupported</code> object with the
* given range of supported job impressions values.
*
* @param lowerBound the lower bound value
@@ -71,24 +71,24 @@ public final class JobImpressionsSupported extends SetOfIntegerSyntax
public JobImpressionsSupported(int lowerBound, int upperBound)
{
super(lowerBound, upperBound);
-
+
if (lowerBound < 1)
throw new IllegalArgumentException("lowerBound may not be less than 1");
}
-
+
/**
* 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)
{
if (! (obj instanceof JobImpressionsSupported))
return false;
-
+
return super.equals(obj);
}