Package com.sun.mirror.apt
Interface RoundState
public interface RoundState
Represents the status of a completed round of annotation processing.
- Since:
- 1.5
- Version:
- 1.1 04/06/25
- Author:
- Joseph D. Darcy, Scott Seligman
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturnstrueif new class files were created in this round of processing; returnsfalseotherwise.booleanReturnstrueif an error was raised in this round of processing; returnsfalseotherwise.booleanReturnstrueif this was the last round of annotation processing; returnsfalseif there will be a subsequent round.booleanReturnstrueif new source files were created in this round of processing; returnsfalseotherwise.
-
Method Details
-
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.
-