/* * @(#)PrintJobAttributeListener.java 1.5 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.print.event; /** * Implementations of this interface are attached to a * {@link javax.print.DocPrintJob DocPrintJob} to monitor * the status of attribute changes associated with the print job. * */ public interface PrintJobAttributeListener { /** * Notifies the listener of a change in some print job attributes. * One example of an occurrence triggering this event is if the * {@link javax.print.attribute.standard.JobState JobState} * attribute changed from * PROCESSING to PROCESSING_STOPPED. * @param pjae the event. */ public void attributeUpdate(PrintJobAttributeEvent pjae) ; }