List of usage examples for javax.annotation.processing AbstractProcessor subclass-usage
From source file org.eclim.annotation.CommandListingProcessor.java
/** * Annotation processor for listing all eclim commands. * * @author Eric Van Dewoestine */ @SupportedAnnotationTypes({ "org.eclim.annotation.Command" })
From source file com.ym.easyipc.processor.AnnotationProcessor.java
/** * Created by Yuriy Myronovych on 21/04/2015. */ @SupportedAnnotationTypes({ "com.ym.easyipc.processor.EasyIPCMethod", "com.ym.easyipc.processor.EasyIPCListener" }) public class AnnotationProcessor extends AbstractProcessor {
From source file ch.rasc.constgen.ConstAnnotationProcessor.java
@SupportedAnnotationTypes({ "org.springframework.data.mongodb.core.mapping.Document", "org.mongodb.morphia.annotations.Entity", "ch.rasc.bsoncodec.annotation.BsonDocument" }) @SupportedSourceVersion(SourceVersion.RELEASE_8) @AutoService(Processor.class) public class ConstAnnotationProcessor extends AbstractProcessor {
From source file io.fabric8.kubernetes.generator.processor.AbstractKubernetesAnnotationProcessor.java
public abstract class AbstractKubernetesAnnotationProcessor extends AbstractProcessor { private static final String KUBERNETES_JSON = "kubernetes.json"; private static final String KUBERNETES_YAML = "kubernetes.yml"; private static final ObjectMapper MAPPER = new ObjectMapper().enable(SerializationFeature.INDENT_OUTPUT);
From source file pt.ist.vaadinframework.annotation.EmbeddedAnnotationProcessor.java
@SupportedSourceVersion(SourceVersion.RELEASE_7) @SupportedAnnotationTypes({ "pt.ist.vaadinframework.annotation.EmbeddedComponent" }) public class EmbeddedAnnotationProcessor extends AbstractProcessor { public static final String LOG_FILENAME = ".embeddedAnnotationLog"; public static final String ENTRY_SEPERATOR = "\n";
From source file mbenson.annotationprocessing.ProcessorBase.java
/** * Abstract base class to provide further functionality atop * {@link AbstractProcessor}. */ public abstract class ProcessorBase extends AbstractProcessor {
From source file com.github.cchacin.JsonSchemaProcessor.java
public class JsonSchemaProcessor extends AbstractProcessor { private Filer filer; private final VelocityContext vc = new VelocityContext();
From source file org.jdto.tools.AnnotationConfigVerifier.java
/**
* Annotation processor that verifies the sanity of the DTO Mapping.
*
* This annotation processor will work with source code starting from version 6.
*
* @author Juan Alberto Lpez Cavallotti
From source file ch.rasc.extclassgenerator.ModelAnnotationProcessor.java
@SupportedAnnotationTypes({ "ch.rasc.extclassgenerator.Model" }) @SupportedOptions({ "outputFormat", "debug", "includeValidation" }) public class ModelAnnotationProcessor extends AbstractProcessor { private static final boolean ALLOW_OTHER_PROCESSORS_TO_CLAIM_ANNOTATIONS = false;
From source file net.pkhsolutions.ceres.common.builder.processor.BuildableAP.java
/**
* This is an annotation processor that generates builders for classes annotated
* with
* {@link Buildable}. Clients should never use this class directly.
*
* @author Petter Holmstrm