Annotation processing is the analysis of annotations of a Java program at build-time. An API modelling the structure of declarations (from packages and classes to method and type parameters) of the source code is used for validation or generation of additional classes just before compilation.
-1
votes
1answer
47 views
Java Annotation Processing - Purpose & Examples
Even after spending a good time, I am unable to understand the purpose of Annotation Processing.
I understand why annotations are required for run-time, simplest example I can think are:
...
0
votes
0answers
65 views
Java AnnotationProcessor list only declared methods / filter inherited methods
In an AnnotationProcessor, I need access to all declared methods of an annotated classes' InnerClass. It's important to me, that all inherited methods are skipped / filtered. But even after some hours ...
1
vote
0answers
89 views
How to run annotation processor in eclipse on save
Currently I generate files with an annotation processor in eclipse for a project by
Right click on project > Run As > Maven Clean
Right click on project > Run As > Maven install
This ...
0
votes
0answers
56 views
Java annotation processing API accessing import statements
I am writing an AnnotationProcessor which is supposed to generate java code. It should generate a derived interface from certain existing interfaces.
For this purpose I need to find the import ...
0
votes
0answers
55 views
Get a class as javax.lang.model.element.Element in junit tests
I would like to test my utility class ElementUtils but I don't know how to get a class as an Element. In AnnotationProcessors I get my elements by using the following code
Set<? extends ...
0
votes
0answers
48 views
Using StandardLocation Class in Annotation processor
I am using NETBeans IDE for developing an annotation processor. I have written the annotation processor and then convert it to a JAR and then add this JAR as a referenced library to another java ...
0
votes
1answer
315 views
Modern Java Annotation Processing
Is annotation processing still an active part of Java 6+, or is it something that has been deprecated/discouraged/obsolesced. If obsolesced, why (why is it no longer needed/useful)? And if it's still ...
1
vote
2answers
104 views
accessing VM arguments during compile time
I have problem in accessing VM arguments in My program. I am writing an annotation processor in which i want to access some VM arguments. I am Using NETBeans IDE. I create the jar file of the ...
4
votes
1answer
609 views
Maven 3 - How to add annotation processor dependency?
I need to run an annotation processor on my project's sources. The annotation processor should not become a transitive dependency of the project since it's only needed for annotation processing and ...
0
votes
0answers
32 views
custom annotation processor for tracing program execution
I had previously asked as to how to write our own aspects without using any external JARs, well that turned out to be quite difficult. I found that we could write custom annotation processors to read ...
0
votes
0answers
87 views
Getting Netbeans Platform Annotations working in Eclipse
The Netbeans Platform recently introduced annotations-based generation of resource files such as bundles and the layer.xml file.
Having a Maven-based Netbeans Platform project in Netbeans (where ...
1
vote
1answer
111 views
IntelliJ IDEA Annotation processors: “Obtain processors from project classpath”
What does the "Obtain processors from project classpath" option in the annotation processor settings mean?
If I understand the option "Obtain processors from project classpath" correctly, it should ...
3
votes
1answer
118 views
How to instantiate a class being “annotation processed”?
I am writing an annotation processor and I need to instantiate a class being processed.
I am extracting some documentation based on the class and its annotations, and I'd like to run a method from ...
2
votes
2answers
398 views
Code replacement with an annotation processor
I'm trying to write an annotation processor to insert methods and fields on a class... and the documentation is so sparse. I'm not getting far and I don't know if I'm approaching it correctly.
The ...
2
votes
0answers
66 views
AnnotationProcessor using multiple source-files to create one file
I have two classes with methods and i want to combine the methods of the two classes to one class.
@Service("ITestService")
public interface ITest1
{
@Export
void method1();
}
...
2
votes
0answers
188 views
Custom Annotation Processor creating duplicate classes in Maven
I have a custom annotation processor that generates classes using velocity templates. It works fine but I need to clean the project before building to avoid duplicate classes during compilation.
I ...
1
vote
1answer
95 views
Access javac options within AnnotationProcessor
I'm writing custom AnnotationProcessor and need to access options which was set to javac during execution: e.g. -verbose, -s, -d
What is the correct way to do this. I don't think that parsing ...
0
votes
2answers
142 views
Maven, NetBeans Platform, Wrapper Modules and Annotation Processors on dependencies
I have a Maven NetBeans platform application. One of its modules is a wrapper to a java project (jar) that exposes some services to the Lookup. In the wrapped project I use the maven-processor-plugin ...
1
vote
1answer
60 views
Messages with level Diagnostic.Kind.NOTE (and others) on Annotation Processors
I have two Maven projects:
The first defines an annotation, an annotation processor and a provider-configuration file to trigger the annotation processor through the ServiceLoader API.
The other ...
1
vote
1answer
140 views
maven-processor-plugin listing the annotation processors to ignore
Is there a way to use the maven-processor-plugin (or any other plug-in) to execute annotation processors listing the ones to skip? I have little control on the processors my dependencies might use but ...
4
votes
2answers
387 views
APT How to process annotations of nested annotated classes
I am trying to write an annotation processor using java. This annotation processor needs to identify annotated nested classes within an annotated class as seen below. I will process the annotated ...
2
votes
1answer
513 views
Annotation processor output in maven
I'm using JSR 269 as a way to analyze code during compilation and to fail it if needed.
I'm having troubles with displaying output of my annotation processor in maven (Ant does show the output)
I'm ...
7
votes
2answers
180 views
Types isAssignable and isSubtype misunderstanding
In writing an Annotation Processor using the Java 6 API, I came across a need to handle all Maps in a particular fashion, but I'm clearly misunderstanding what the API is intended to do or how to ...
3
votes
1answer
208 views
How to step-debug annotation processor during compile?
I have an annotation processor for an annotation of retention policy=SOURCE.
I have not idea how to step-debug it.
I have issued print statements, logger info when I run mvn install, compile or ...
1
vote
1answer
130 views
Trigger annotation processor with a meta annotation
I have built an annotation processor that is triggered with the com.foo.FooEntity annotation. There is a need to be able to create more stereotypes that would trigger that annotation processor as ...
2
votes
0answers
78 views
How to get type descriptor(JNI style) String from an TypeMirror object (annotation processing)
I would like to get a String like:
Ljava/lang/Class;.getName()Ljava/lang/String;
(JNI style type/method description, or called type descriptor)
from an javax.lang.model.type.TypeMirror object in ...
1
vote
1answer
123 views
Generate code that implements JSR 308 “instanceof @MyAnotations” runtime check
JSR 308 proposes to add type annotations to Java. After its ratification, programmers will be able to add an annotation wherever a Java type is currently allowed. That includes not only ...
1
vote
1answer
363 views
Integrating javassist byte code manipulation with maven compilation
I have a maven project which compiles with javac / aspectj compiler.
I want to run on classes which were compiled a javassist program which manipulate the compiled classes and add stuff to them.
I ...
0
votes
2answers
656 views
Annotation processing for adding message attribute to existing JSR-303 annotations on fields
I have a data transfer object that's annotated with JSR-303 constraints like...
public class AssetOwnedDailyLocatableId implements Serializable, AssetOwned, HasOperatingDay, Locatable {
private ...
0
votes
0answers
153 views
Ant: javac with proc:only from Ant?
Is there any way to enforce javac task to invoke only annotation processing, without compilation. -proc:only javac option is supposed to enforce such behaviour, according to javac documentation.
But ...
2
votes
1answer
251 views
Android Project + Eclipse + Annotation Processing
Does anyone know how to enable annotation processing in Eclipse in an Android Project?
I did the following:
Created a Java Project with the Processor and the META-INF > services file with the class ...
2
votes
2answers
186 views
How to access @XmlElement values in APT?
I'm processing annotations with APT in compile time, and I need to get the values of @XmlElement annotations in some classes. The class looks something like this:
public class ComponentConfig {
...
1
vote
1answer
100 views
Processing different annotations with the same Processor instance
We have two annotations in our project and I'd like to collect the annotated classes and create a merged output based on both lists of classes.
Is this possible with only one Processor instance? How ...
3
votes
1answer
336 views
What is the default annotation processors discovery process?
The documentation of Maven Compiler plugin mentions the following:
annotationProcessors:
Names of annotation processors to run. Only applies to JDK 1.6+ If not
set, the default annotation ...
3
votes
1answer
885 views
How to use custom annotation processor with Maven 2?
In our enterprise application we are seeking a dynamic way to collect data from our Java classes. We created a custom annotation interface (@interface) with a name property. We would like to collect ...
0
votes
2answers
236 views
Resource for annotation processing
I'm looking desperately for a valuable resource on Java 6 annotation processing. Ideally, the different points I would like to be addressed should be:
The various Element interfaces and how to ...
1
vote
1answer
155 views
How to get the type of a field in an annotation processor?
I'm trying to write an annotation to check if an object is immutable at runtime. In order to do so, I check if the class of the object is final and then if all its attributes are also final. And then, ...
0
votes
1answer
163 views
Disable incremental compilation in javac Ant task
I need to easily test my annotation processors, so I prepared Ant script to launch javac with all the necessary options set. Unfortuantely, as stated in another thread:
By default the task ...
0
votes
1answer
109 views
Eclipse plug-in development, expose plug-in's classes in java project
I'm trying to build an annotation processor as eclipse plug-in.
This is the first time I'm writing a plug-in for eclipse so I'm not sure I'm using the correct terminology and I'm sorry if I'm not ...
2
votes
2answers
1k views
Not getting annotation processed (generated) sources compiled into apk, using maven
I try to use Maven and androidannotations to build my apk, but independently of any IDE (I'm actually using IntelliJ IDEA and not Eclipse, but I would like to have it entirely IDE-independent, so that ...
0
votes
1answer
249 views
Ant android test project with AndroidMock
I have a android project, I want to build and install and run the test with command line.
Following is my build shell script:
android update project --path ./main/libraryProject
android update ...
11
votes
2answers
288 views
How can I examine the whole source tree with an annotation processor?
I have a lot of handler classes that handle specific message types. To register all these handlers, I need to know which ones exist. Currently, they're all annotated with a specific annotation, and ...
2
votes
1answer
260 views
Programmatically invoke Annotation Processors
This is the first time I am writing a Annotation Processor and I want to invoke it programmatically. Is it possible?
I have written small code for processor:
...
0
votes
1answer
324 views
How do I make an AnnotationProcessor test *subtypes* of the annotated type?
I wish to create an annotation which will test the annotated type (which may be an interface) and all its subtypes, and throw a compile error if any tested type is a concrete class without a no-arg ...
1
vote
1answer
119 views
Compile AppEngine project that has datastore callbacks with Ant
I've implemented datastore callbacks in our AppEngine project and set it up in Eclipse as indicated in the link.
Now I'm having trouble getting it to compile in Ant. Here's what I have for the javac ...
0
votes
2answers
111 views
Can't set properties for Annotation Processing for RequestFactory Validation
Many stackoverflow questions link to
http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryInterfaceValidation#IDE_configuration
which shows a place to set "Annotation Processing" ...
2
votes
2answers
2k views
eclipse java annotation processing
I want to do something using Annotation processing in eclipse jdt.
Eclipse jdtapt help tells me I should configure things on the java/compiler/annotation processing preferences page.
But on my ...
0
votes
1answer
574 views
Android javax.annotation.processing Package missing
I would like to do some annotation processing based on the example in the following link: http://www.zdnetasia.com/writing-and-processing-custom-annotations-part-3-39362483.htm.
However, I would like ...
1
vote
0answers
241 views
Generate @WebService with Eclipse Annotation Processing
I'm using the Eclipse Annotation Processing feature to generate a webservice client. My Processor extends "javax.annotation.processing.AbstractProcessor" and is itself annotated ...
8
votes
1answer
1k views
Getting the qualified class name of generic type with Java 6 annotation processor
I am developing a small code generator using JDK 6's Annotation Processing API and am stuck trying to get the actual generic type of a field in the class. To be clearer, let's say I have a class like ...
