| java.lang.Object org.apache.beehive.controls.runtime.generator.apt.Diagnostics
All known Subclasses: org.apache.beehive.controls.runtime.generator.apt.TwoPhaseAnnotationProcessor,
Diagnostics | abstract public class Diagnostics (Code) | | Wrapper class that allows the Control annotation processors to report diagnostics
without calling directly against the
AnnotationProcessorEnvironment . This
class keeps track of whether errors have been reported during annotation processing.
|
Constructor Summary | |
protected | Diagnostics(AnnotationProcessorEnvironment env) |
Method Summary | |
public void | addError(Declaration decl, String messageKey, Object... args) | public void | addError(AnnotationMirror ann, String messageKey, Object... args) | public void | addError(AnnotationValue annVal, String messageKey, Object... args) | public void | addErrorArrayArgs(AnnotationMirror ann, String messageKey, Object[] args) | public void | addWarning(Declaration decl, String messageKey, Object... args) | public void | addWarning(AnnotationMirror ann, String messageKey, Object... args) | public void | addWarning(AnnotationValue annVal, String messageKey, Object... args) | public AnnotationProcessorEnvironment | getAnnotationProcessorEnvironment() | abstract protected String | getResourceString(String key, Object... args) | public boolean | hasErrors() | protected void | setHasErrors(boolean hadErrors) |
Diagnostics | protected Diagnostics(AnnotationProcessorEnvironment env)(Code) | | |
addError | public void addError(AnnotationMirror ann, String messageKey, Object... args)(Code) | | |
addError | public void addError(AnnotationValue annVal, String messageKey, Object... args)(Code) | | |
addErrorArrayArgs | public void addErrorArrayArgs(AnnotationMirror ann, String messageKey, Object[] args)(Code) | | |
addWarning | public void addWarning(Declaration decl, String messageKey, Object... args)(Code) | | |
addWarning | public void addWarning(AnnotationMirror ann, String messageKey, Object... args)(Code) | | |
addWarning | public void addWarning(AnnotationValue annVal, String messageKey, Object... args)(Code) | | |
getAnnotationProcessorEnvironment | public AnnotationProcessorEnvironment getAnnotationProcessorEnvironment()(Code) | | |
hasErrors | public boolean hasErrors()(Code) | | |
setHasErrors | protected void setHasErrors(boolean hadErrors)(Code) | | |
|
|