Package com.sun.mirror.apt
Interface RoundState
-
public interface RoundState
Represents 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 boolean
classFilesCreated()
Returnstrue
if new class files were created in this round of processing; returnsfalse
otherwise.boolean
errorRaised()
Returnstrue
if an error was raised in this round of processing; returnsfalse
otherwise.boolean
finalRound()
Returnstrue
if this was the last round of annotation processing; returnsfalse
if there will be a subsequent round.boolean
sourceFilesCreated()
Returnstrue
if new source files were created in this round of processing; returnsfalse
otherwise.
-
-
-
Method Detail
-
finalRound
boolean finalRound()
Returnstrue
if this was the last round of annotation processing; returnsfalse
if there will be a subsequent round.
-
errorRaised
boolean errorRaised()
Returnstrue
if an error was raised in this round of processing; returnsfalse
otherwise.
-
sourceFilesCreated
boolean sourceFilesCreated()
Returnstrue
if new source files were created in this round of processing; returnsfalse
otherwise.
-
classFilesCreated
boolean classFilesCreated()
Returnstrue
if new class files were created in this round of processing; returnsfalse
otherwise.
-
-