diff options
| author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 23:20:01 +0000 |
|---|---|---|
| committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 23:20:01 +0000 |
| commit | 3b3101d8b5ae4f08a16c0b7111da6cad41bbd282 (patch) | |
| tree | a5eb7cf42a51869cc8aa1fad7ad6a90cca47fdd8 /libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java | |
| parent | 7e55c49d7d91ef9f09e93c1100119b1ab3652446 (diff) | |
| download | ppe42-gcc-3b3101d8b5ae4f08a16c0b7111da6cad41bbd282.tar.gz ppe42-gcc-3b3101d8b5ae4f08a16c0b7111da6cad41bbd282.zip | |
Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated.
* Makefile.in: Likewise.
* scripts/makemake.tcl: Use glob -nocomplain.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107049 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java')
| -rw-r--r-- | libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java b/libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java index d0f4b65c647..a001e7e91ce 100644 --- a/libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java +++ b/libjava/classpath/javax/print/attribute/SupportedValuesAttribute.java @@ -1,5 +1,5 @@ -/* Attribute.java -- - Copyright (C) 2003 Free Software Foundation, Inc. +/* SupportedValuesAttribute.java -- + Copyright (C) 2003, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,8 +38,22 @@ exception statement from your version. */ package javax.print.attribute; /** - * @author Michael Koch + * Marker interface for all attribute classes specifying the + * supported/allowed values for another printing attribute class. + * <p> + * A {@link javax.print.PrintService} instance for example provides + * printing attribute classes implementing this interface to indicate + * that a specific attribute type is supported and if the supported values. + * </p><p> + * E.g. a {@link javax.print.attribute.standard.JobPrioritySupported} + * instance indicates that the attribute class + * {@link javax.print.attribute.standard.JobPriority} is supported and + * provides the number of the possible priority levels. + * </p> + * + * @author Michael Koch (konqueror@gmx.de) */ public interface SupportedValuesAttribute extends Attribute { + // Marker interface } |

