diff options
Diffstat (limited to 'libjava/classpath/javax/print/AttributeException.java')
-rw-r--r-- | libjava/classpath/javax/print/AttributeException.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/classpath/javax/print/AttributeException.java b/libjava/classpath/javax/print/AttributeException.java index 1251b00bb35..9a72c53d061 100644 --- a/libjava/classpath/javax/print/AttributeException.java +++ b/libjava/classpath/javax/print/AttributeException.java @@ -46,29 +46,29 @@ import javax.print.attribute.Attribute; * provide further information of printing errors if unsupported * attribute classes or values of attributes are involved. * <p> - * There exists no <code>PrintException</code> class implementing this - * interface. Providing these extensions in <code>PrintException</code> - * subclasses is left to the concrete print service implementation. - * </p> - * + * There exists no <code>PrintException</code> class implementing this + * interface. Providing these extensions in <code>PrintException</code> + * subclasses is left to the concrete print service implementation. + * </p> + * * @author Michael Koch (konqueror@gmx.de) */ public interface AttributeException { /** * Returns the unsupported printing attribute classes for a print service - * that does not support the attribute category at all. The returned + * that does not support the attribute category at all. The returned * class instances are sublcasses of the base interface {@link Attribute}. - * + * * @return The unsupported attribute classes, or <code>null</code> if there * are no such attribute classes. */ Class[] getUnsupportedAttributes(); - + /** * Returns the unsupported attribute values of printing attributes a specific * print service does support but not the particular provided value. - * + * * @return The unsupported attribute values, or <code>null</code> if there * are no such attributes values. */ |