FileDocCategorySizeDatePackage
Event.javaAPI DocGlassfish v2 API483Wed Feb 08 12:31:18 GMT 2006persistence.antlr.debug

Event

public abstract class Event extends EventObject

Fields Summary
private int
type
Constructors Summary
public Event(Object source)

		super(source);
	
public Event(Object source, int type)

		super(source);
		setType(type);
	
Methods Summary
public intgetType()

		return type;
	
voidsetType(int type)

		this.type = type;
	
voidsetValues(int type)
This should NOT be called from anyone other than ParserEventSupport!

		setType(type);