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 8 package javax.print.attribute; 9 10 /** 11 * Interface PrintServiceAttribute is a tagging interface which a printing 12 * attribute class implements to indicate the attribute describes the status 13 * of a Print Service or some other characteristic of a Print Service. A Print 14 * Service instance adds a number of PrintServiceAttributes to a Print 15 * service's attribute set to report the Print Service's status. 16 * <P> 17 * 18 * @see PrintServiceAttributeSet 19 * 20 * @author Alan Kaminsky 21 */ 22 public interface PrintServiceAttribute extends Attribute { 23 } 24