diff options
Diffstat (limited to 'libjava/javax/print/attribute/standard/PrinterMakeAndModel.java')
-rw-r--r-- | libjava/javax/print/attribute/standard/PrinterMakeAndModel.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libjava/javax/print/attribute/standard/PrinterMakeAndModel.java b/libjava/javax/print/attribute/standard/PrinterMakeAndModel.java index 2609750..8c8eea8 100644 --- a/libjava/javax/print/attribute/standard/PrinterMakeAndModel.java +++ b/libjava/javax/print/attribute/standard/PrinterMakeAndModel.java @@ -41,6 +41,9 @@ import java.util.Locale; import javax.print.attribute.PrintServiceAttribute; import javax.print.attribute.TextSyntax; +/** + * @author Michael Koch (konqueror@gmx.de) + */ public final class PrinterMakeAndModel extends TextSyntax implements PrintServiceAttribute { @@ -50,6 +53,7 @@ public final class PrinterMakeAndModel extends TextSyntax * Creates a <code>PrinterMakeAndModel</code> object. * * @param makeAndModel the make and model string + * @param locale the locale of the make and model, null means default locale * * @exception NullPointerException if makeAndModel is null */ @@ -63,7 +67,7 @@ public final class PrinterMakeAndModel extends TextSyntax * * @param obj the object to test * - * @returns true if both objects are equal, false otherwise. + * @return true if both objects are equal, false otherwise. */ public boolean equals(Object obj) { @@ -78,7 +82,7 @@ public final class PrinterMakeAndModel extends TextSyntax * * @return the class <code>PrinterMakeAndModel</code> itself */ - public final Class getCategory() + public Class getCategory() { return PrinterMakeAndModel.class; } @@ -88,7 +92,7 @@ public final class PrinterMakeAndModel extends TextSyntax * * @return the string "printer-make-and-model" */ - public final String getName() + public String getName() { return "printer-make-and-model"; } |