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 TypeMethodDescriptionboolean
Returnstrue
if new class files were created in this round of processing; returnsfalse
otherwise.boolean
Returnstrue
if an error was raised in this round of processing; returnsfalse
otherwise.boolean
Returnstrue
if this was the last round of annotation processing; returnsfalse
if there will be a subsequent round.boolean
Returnstrue
if new source files were created in this round of processing; returnsfalse
otherwise.
-
Method Details
-
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.
-