Class RfValidator
- java.lang.Object
-
- javax.annotation.processing.AbstractProcessor
-
- com.google.web.bindery.requestfactory.apt.RfValidator
-
- All Implemented Interfaces:
javax.annotation.processing.Processor
@SupportedAnnotationTypes("*") @SupportedOptions({"rootOverride","suppressErrors","suppressWarnings","verbose"}) public class RfValidator extends javax.annotation.processing.AbstractProcessor
The entry point for annotation validation.
-
-
Constructor Summary
Constructors Constructor Description RfValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.lang.model.SourceVersion
getSupportedSourceVersion()
void
init(javax.annotation.processing.ProcessingEnvironment processingEnv)
boolean
process(java.util.Set<? extends javax.lang.model.element.TypeElement> annotations, javax.annotation.processing.RoundEnvironment roundEnv)
void
setClientOnly(boolean clientOnly)
(package private) void
setForceErrors(boolean forceErrors)
(package private) void
setMustResolveAllMappings(boolean requireAll)
Make it an error to not resolve all ProxyForName and ServiceName mappings.(package private) void
setRootOverride(java.util.List<java.lang.String> binaryTypeNames)
Instead of scanning the round's root elements, scan these type names instead.
-
-
-
Method Detail
-
getSupportedSourceVersion
public javax.lang.model.SourceVersion getSupportedSourceVersion()
- Specified by:
getSupportedSourceVersion
in interfacejavax.annotation.processing.Processor
- Overrides:
getSupportedSourceVersion
in classjavax.annotation.processing.AbstractProcessor
-
init
public void init(javax.annotation.processing.ProcessingEnvironment processingEnv)
- Specified by:
init
in interfacejavax.annotation.processing.Processor
- Overrides:
init
in classjavax.annotation.processing.AbstractProcessor
-
process
public boolean process(java.util.Set<? extends javax.lang.model.element.TypeElement> annotations, javax.annotation.processing.RoundEnvironment roundEnv)
- Specified by:
process
in interfacejavax.annotation.processing.Processor
- Specified by:
process
in classjavax.annotation.processing.AbstractProcessor
-
setClientOnly
public void setClientOnly(boolean clientOnly)
-
setForceErrors
void setForceErrors(boolean forceErrors)
-
setMustResolveAllMappings
void setMustResolveAllMappings(boolean requireAll)
Make it an error to not resolve all ProxyForName and ServiceName mappings.
-
setRootOverride
void setRootOverride(java.util.List<java.lang.String> binaryTypeNames)
Instead of scanning the round's root elements, scan these type names instead. This is used by the ValidationTool to scan pre-compiled classfiles.
-
-