FileDocCategorySizeDatePackage
PrintEvent.javaAPI DocJava SE 5 API852Fri Aug 26 14:57:46 BST 2005javax.print.event

PrintEvent

public class PrintEvent extends EventObject
Class PrintEvent is the super class of all Print Service API events.

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public PrintEvent(Object source)
Constructs a PrintEvent object.

param
source is the source of the event
throws
IllegalArgumentException if source is null.


                                   
        
        super(source);
    
Methods Summary
public java.lang.StringtoString()

return
a message describing the event

	return ("PrintEvent on " + getSource().toString());