FileDocCategorySizeDatePackage
RoundCompleteEvent.javaAPI DocJava SE 5 API1306Fri Aug 26 14:55:14 BST 2005com.sun.mirror.apt

RoundCompleteEvent

public abstract class RoundCompleteEvent extends EventObject
Event for the completion of a round of annotation processing.

While this class extends the serializable EventObject, it cannot meaningfully be serialized because all of the annotation processing tool's internal state would potentially be needed.

author
Joseph D. Darcy
author
Scott Seligman
version
1.2 04/07/19
since
1.5

Fields Summary
private RoundState
rs
Constructors Summary
protected RoundCompleteEvent(AnnotationProcessorEnvironment source, RoundState rs)
The current AnnotationProcessorEnvironment is regarded as the source of events.

param
source The source of events
param
rs The state of the round

	super(source);
	this.rs = rs;
    
Methods Summary
public com.sun.mirror.apt.RoundStategetRoundState()
Return round state.

	return rs;
    
public com.sun.mirror.apt.AnnotationProcessorEnvironmentgetSource()
Return source.

	return (AnnotationProcessorEnvironment)super.getSource();