package.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <!-- package.html - describes classes in javax.print.attribute package.
  3. Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
  4. This file is part of GNU Classpath.
  5. GNU Classpath is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. GNU Classpath is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GNU Classpath; see the file COPYING. If not, write to the
  15. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. 02110-1301 USA.
  17. Linking this library statically or dynamically with other modules is
  18. making a combined work based on this library. Thus, the terms and
  19. conditions of the GNU General Public License cover the whole
  20. combination.
  21. As a special exception, the copyright holders of this library give you
  22. permission to link this library with independent modules to produce an
  23. executable, regardless of the license terms of these independent
  24. modules, and to copy and distribute the resulting executable under
  25. terms of your choice, provided that you also meet, for each linked
  26. independent module, the terms and conditions of the license of that
  27. module. An independent module is a module which is not derived from
  28. or based on this library. If you modify this library, you may extend
  29. this exception to your version of the library, but you are not
  30. obligated to do so. If you do not wish to do so, delete this
  31. exception statement from your version. -->
  32. <html>
  33. <head><title>GNU Classpath - javax.print.attribute</title></head>
  34. <body>
  35. <p>Provides classes and interfaces describing the roles and
  36. syntax of attribute objects in the Java Print Service API.</p>
  37. <p>
  38. The package contains the base attribute interface and several subinterfaces
  39. describing the different attribute roles of printing attributes. Furthermore,
  40. abstract classes defining the syntax of attributes are provided. For
  41. collections of attributes based on their roles different set interfaces and
  42. implementing classes are available.
  43. </p><p>
  44. Existing attribute roles are:
  45. <ul>
  46. <li><a href="PrintServiceAttribute.html">PrintServiceAttribute</a>s
  47. describing the state and other informations of a PrintService.</li>
  48. <li><a href="PrintJobAttribute.html">PrintJobAttribute</a>s describing
  49. the state of the print job.</li>
  50. <li><a href="PrintRequestAttribute.html">PrintRequestAttribute</a>s specifying
  51. how a print job should be printed and are applied to a complete print job.</li>
  52. <li><a href="PrintJobAttribute.html">PrintJobAttribute</a> s specifying
  53. how a single document in the print job should be printed.</li>
  54. </ul>
  55. </p><p>
  56. Every attribute is of a certain syntax which defines its type and the
  57. representation of its value. The different syntax types are provided as
  58. abstract syntax classes (e.g. <code>IntegerSyntax</code>). Concrete attribute
  59. implementations are subclasses of these abstract syntax classes.
  60. </p><p>
  61. Attributes may be collected as sets of attributes. Different interfaces for
  62. attribute collections per role and implementations based on a HashMap are
  63. provided (for example <a href="HashPrintJobAttributeSet.html">
  64. HashPrintJobAttributeSet</a> for the print job attributes).
  65. </p>
  66. <p>
  67. <b>Since:</b> 1.4
  68. </p>
  69. </body>
  70. </html>