1. /*
  2. * @(#)PrintServiceAttribute.java 1.4 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.print.attribute;
  8. /**
  9. * Interface PrintServiceAttribute is a tagging interface which a printing
  10. * attribute class implements to indicate the attribute describes the status
  11. * of a Print Service or some other characteristic of a Print Service. A Print
  12. * Service instance adds a number of PrintServiceAttributes to a Print
  13. * service's attribute set to report the Print Service's status.
  14. * <P>
  15. *
  16. * @see PrintServiceAttributeSet
  17. *
  18. * @author Alan Kaminsky
  19. */
  20. public interface PrintServiceAttribute extends Attribute {
  21. }