diff options
Diffstat (limited to 'libjava/classpath/javax/print/attribute/standard/PresentationDirection.java')
-rw-r--r-- | libjava/classpath/javax/print/attribute/standard/PresentationDirection.java | 85 |
1 files changed, 82 insertions, 3 deletions
diff --git a/libjava/classpath/javax/print/attribute/standard/PresentationDirection.java b/libjava/classpath/javax/print/attribute/standard/PresentationDirection.java index bd1821d12f8..3a479abfac4 100644 --- a/libjava/classpath/javax/print/attribute/standard/PresentationDirection.java +++ b/libjava/classpath/javax/print/attribute/standard/PresentationDirection.java @@ -1,5 +1,5 @@ /* PresentationDirection.java -- - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -43,32 +43,90 @@ import javax.print.attribute.PrintRequestAttribute; /** + * The <code>PresentationDirection</code> attribute specifies + * a value to be used together with the <code>NumberUp</code> attribute + * to indicate the layout of multiple pages on a single media sheet. + * <p> + * <b>IPP Compatibility:</b> PresentationDirection is not an IPP 1.1 + * attribute. + * </p> + * * @author Michael Koch (konqueror@gmx.de) + * @author Wolfgang Baer (WBaer@gmx.de) */ public final class PresentationDirection extends EnumSyntax implements PrintRequestAttribute, PrintJobAttribute { private static final long serialVersionUID = 8294728067230931780L; + /** + * The single pages are arranged on the media in columns starting + * at the top left towards the bottom left. + */ public static final PresentationDirection TOBOTTOM_TORIGHT = new PresentationDirection(0); + + /** + * The single pages are arranged on the media in columns starting + * at the top right towards the bottom left. + */ public static final PresentationDirection TOBOTTOM_TOLEFT = new PresentationDirection(1); + + /** + * The single pages are arranged on the media in columns starting + * at the bottom left towards the top right. + */ public static final PresentationDirection TOTOP_TORIGHT = new PresentationDirection(2); + + /** + * The single pages are arranged on the media in columns starting + * at the bottom right towards the top left. + */ public static final PresentationDirection TOTOP_TOLEFT = new PresentationDirection(3); + + /** + * The single pages are arranged on the media in rows starting + * at the top left towards the right bottom. + */ public static final PresentationDirection TORIGHT_TOBOTTOM = new PresentationDirection(4); + + /** + * The single pages are arranged on the media in rows starting + * at the bottom left towards the right top. + */ public static final PresentationDirection TORIGHT_TOTOP = new PresentationDirection(5); + + /** + * The single pages are arranged on the media in rows starting + * at the top right towards the left bottom. + */ public static final PresentationDirection TOLEFT_TOBOTTOM = new PresentationDirection(6); + + /** + * The single pages are arranged on the media in rows starting + * at the bottom right towards the left top. + */ public static final PresentationDirection TOLEFT_TOTOP = new PresentationDirection(7); + private static final String[] stringTable = { "tobottom-toright", + "tobottom-toleft", "totop-toright", "totop-toleft", "toright-tobottom", + "toright-totop", "toleft-tobottom", "toleft-totop" }; + + private static final PresentationDirection[] enumValueTable = + { TOBOTTOM_TORIGHT, TOBOTTOM_TOLEFT, TOTOP_TORIGHT, TOTOP_TOLEFT, + TORIGHT_TOBOTTOM, TORIGHT_TOTOP, TOLEFT_TOBOTTOM, TOLEFT_TOTOP }; + /** * Constructs a <code>PresentationDirection</code> object. + * + * @param value the enum value. */ private PresentationDirection(int value) { @@ -78,7 +136,7 @@ public final class PresentationDirection extends EnumSyntax /** * Returns category of this class. * - * @return the class <code>PresentationDirection</code> itself + * @return The class <code>PresentationDirection</code> itself. */ public Class getCategory() { @@ -88,10 +146,31 @@ public final class PresentationDirection extends EnumSyntax /** * Returns the name of this attribute. * - * @return the name + * @return The name "presentation-direction". */ public String getName() { return "presentation-direction"; } + + /** + * Returns a table with the enumeration values represented as strings + * for this object. + * + * @return The enumeration values as strings. + */ + protected String[] getStringTable() + { + return stringTable; + } + + /** + * Returns a table with the enumeration values for this object. + * + * @return The enumeration values. + */ + protected EnumSyntax[] getEnumValueTable() + { + return enumValueTable; + } } |