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()Returnstrueif new class files were created in this round of processing; returnsfalseotherwise.booleanerrorRaised()Returnstrueif an error was raised in this round of processing; returnsfalseotherwise.booleanfinalRound()Returnstrueif this was the last round of annotation processing; returnsfalseif there will be a subsequent round.booleansourceFilesCreated()Returnstrueif new source files were created in this round of processing; returnsfalseotherwise.
-
-
-
Method Detail
-
finalRound
boolean finalRound()
Returnstrueif this was the last round of annotation processing; returnsfalseif there will be a subsequent round.
-
errorRaised
boolean errorRaised()
Returnstrueif an error was raised in this round of processing; returnsfalseotherwise.
-
sourceFilesCreated
boolean sourceFilesCreated()
Returnstrueif new source files were created in this round of processing; returnsfalseotherwise.
-
classFilesCreated
boolean classFilesCreated()
Returnstrueif new class files were created in this round of processing; returnsfalseotherwise.
-
-