Package com.sun.mirror.apt
Interface RoundState
-
public interface RoundStateRepresents the status of a completed round of annotation processing.- Since:
- 1.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanclassFilesCreated()Returns true if new class files were created in this round of processing; returns false otherwise.booleanerrorRaised()Returns true if an error was raised in this round of processing; returns false otherwise.booleanfinalRound()Returns true if this was the last round of annotation processing; returns false if there will be a subsequent round.booleansourceFilesCreated()Returns true if new source files were created in this round of processing; returns false otherwise.
-
-
-
Method Detail
-
finalRound
boolean finalRound()
Returns true if this was the last round of annotation processing; returns false if there will be a subsequent round.
-
errorRaised
boolean errorRaised()
Returns true if an error was raised in this round of processing; returns false otherwise.
-
sourceFilesCreated
boolean sourceFilesCreated()
Returns true if new source files were created in this round of processing; returns false otherwise.
-
classFilesCreated
boolean classFilesCreated()
Returns true if new class files were created in this round of processing; returns false otherwise.
-
-