diff options
Diffstat (limited to 'libjava/classpath/javax/print/FlavorException.java')
-rw-r--r-- | libjava/classpath/javax/print/FlavorException.java | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/libjava/classpath/javax/print/FlavorException.java b/libjava/classpath/javax/print/FlavorException.java index 1de6a22e32d..879f10807d7 100644 --- a/libjava/classpath/javax/print/FlavorException.java +++ b/libjava/classpath/javax/print/FlavorException.java @@ -1,5 +1,5 @@ /* FlavorException.java -- - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -39,6 +39,16 @@ exception statement from your version. */ package javax.print; /** + * <code>FlavorException</code> specifies a method a specific + * subclass of {@link javax.print.PrintException} may implement to + * provide further information of printing errors if unsupported + * document flavors are involved. + * <p> + * There exists no <code>PrintException</code> class implementing this + * interface. Providing this extension in <code>PrintException</code> + * subclasses is left to the concrete print service implementation. + * </p> + * * @author Michael Koch (konqueror@gmx.de) */ public interface FlavorException @@ -46,7 +56,7 @@ public interface FlavorException /** * Returns the unsupported document flavors. * - * @return the unsupported document flavors + * @return The unsupported document flavors. */ DocFlavor[] getUnsupportedFlavors(); }
\ No newline at end of file |