Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
6k views

How to generate JPA 2.0 metamodel?

In the spirit of type safety associated with the CriteriaQuery JPA 2.0 also has an API to support Metamodel representation of entities. Is anyone aware of a fully functional implementation of this API ...
6
votes
2answers
501 views

Java: reflection (at runtime) versus mirroring (at annotation processing)

I understand the general differences between the concepts of reflection (done at runtime using Class, Method, Field, Annotation, ...), and mirroring (done during annotation processing using ...
6
votes
4answers
2k views

JPA 2.0 metamodel in Netbeans?

I've read that since version 6.9, Netbeans includes annotation processing support, a feature needed, for instance, to generate JPA 2.0 entities' metamodels. However, I couldn't find any examples or ...
5
votes
1answer
322 views

Forward compatible Java 6 annotation processor and SupportedSourceVersion

I am trying out Java 7 for one project and getting warnings from annotation processors (Bindgen and Hibernate JPA modelgen) of this sort: warning: Supported source version 'RELEASE_6' from annotation ...
4
votes
2answers
142 views

processing of annotations inside a method body

I am processing java annotations using the Pluggable Annotation Processing API. Is it somehow possible to also process annotations used inside a method body? thanks for help. Peter
4
votes
4answers
3k views

How do you use Java 1.6 Annotation Processing to perform compile time weaving?

I have created an annotation, applied it to a DTO and written a Java 1.6 style annotationProcessor. I can see how to have the annotationProcessor write a new source file, which isn't what I want to ...
3
votes
1answer
180 views

Java 6 annotation processing — getting a class from an annotation

I have an custom annotation called @Pojo which I use for automatic wiki documentation generation: package com.example.annotations; import java.lang.annotation.ElementType; import ...
3
votes
1answer
196 views

javax.lang.model: How do I get the type of a field?

In java.lang.reflect, one would do: Field someField = ...; Class<?> fieldType = someField.getType(); But what do I do with javax.lang.model's VariableElement (which may or may not represent a ...
3
votes
3answers
386 views

How to write automated unit tests for java annotation processor?

I'm experimenting with java annotation processors. I'm able to write integration tests using the "JavaCompiler" (in fact I'm using "hickory" at the moment). I can run the compile process and analyse ...
3
votes
4answers
5k views

Setting the generated source directory for annotation processors in Maven

I'm trying to move a build which generates sources using an annotation processor to Maven. I've tried configuring the maven-compiler-plugin as follows: <plugins> <plugin> ...
2
votes
1answer
30 views

Consistency of processing environment members across compilation rounds

The Java Annotation Processing API as it stands in JDK 6 and 7 (not the apt tool API from 5) defines the lifecycle of an annotation processor. One is instantiated via the no-args constructor, the init ...
2
votes
1answer
69 views

Difference between isSubtype and isAssignable for TypeMirror

In the documentation for the utility interface Types, of which an instance must be made available to an annotation processor for Java SE 6 or 7 by the compiler, there are two methods which interest me ...
1
vote
1answer
79 views

RequestFactory Interface Validation issue

I'm using RequestFactory in an Android Connected AppEngine project with a shared folder. The Eclipse AnnotationProcessor (that does the interface validation) works fine for the AppEngine project, but ...
1
vote
1answer
70 views

Annotation Processing Tool <- checking valid annotation

I have @ColumnMetadata(index=1) ... @ColumnMetadata(index=2) ... @ColumnMetadata(index=3) ... And I have to check whether index numbers are unique using APT. I have no idea how to do this. I don't ...
1
vote
3answers
187 views

Accessing source code from Java Annotation Processor

I am trying to access the actual original source code of a type from within a Java Annotation Processor. Is this possible somehow? Thanks!
1
vote
1answer
194 views

Java annotation processing: Accessing “Element”s of non-annotated classes possible?

Java annotation processing (since Java 6) is a very good concept, because it allows to access lots of information about classes and methods through the Element interface (and others). But sadly, I ...
1
vote
2answers
439 views

Why aren't APT generated classes being compiled by Eclipse?

In my Eclipse project I'm using a third-party annotation processor, Hibernate Metamodel Generator to be exact. The annotation processor works as expected and generates .java files as specified by the ...
1
vote
1answer
374 views

How do I get the type of the expression in a MemberSelectTree from a javac plugin?

I am trying to write an annotation processor in the JSR 269 format which uses javac's Compiler Tree API to do some source code analysis. I am interested in member select expressions, such as method ...
1
vote
1answer
1k views

Find type parameter of method return type in Java 6 annotation processor

I'm writing a tool that uses the annotation processor to generate source code depending on the return type of methods of an annotated class. The return type is always some subtype (interface or ...
0
votes
0answers
20 views

unable to resolve jar dependencies for annotation processor

I have an annotation processor that depends on an external jar - lib.jar I'm packaging my processor as a jar and using it while compiling my client. I had it working fine until I introduced lib.jar ...
0
votes
1answer
69 views

Checking for absence of super class in annotation processor

When obtaining a TypeElement in an annotation processor, you can ask for its super class (or more specifically, the TypeMirror of it) using method getSuperClass(). According to the JavaDoc, a type ...
0
votes
1answer
233 views

Requestfactory Validation on Multi-Project Setup

I tried changing to the release version of gwt2.4 and run into a problem. I use multiple projects in my setup. I have a project with serverside code, one project with shared code, that can be used in ...
0
votes
1answer
151 views

Sub-packaging my static meta-model classes on Eclipse Indigo

I'm currently using Eclipse Indigo and I'd like to have my meta-model classes to be automatically generated in a sub-package instead of having them in the same package of my entities. I've followed ...
0
votes
2answers
66 views

How to retrieve class type of annotated during annotation processing for code generation?

An annotation processor will provide you with two TypeElement, one for the annotated object and one the annotation itself. Let's assume one needs to know the Class type of the annotated object during ...
0
votes
1answer
89 views

Can I get from a TypeVariable or VariableElement to a list of Methods on the underlying class In an annotation processor at compile time

I have an annotated class: public class CacheMessageHolder<TestMessage> implements MessageHolder<TestMessage> { protected @MessageHolderType TestMessage message; @Override ...
0
votes
1answer
124 views

Adding annotations with Java Annotation Processor

I know that the Annotation Processor is normally used to consume annotations and react to them. I, however, have a use case where this "reaction" involves adding other annotations. Can this be done ...
0
votes
1answer
208 views

AspectJ weaving: How to do a full code weave without static reference to the aspect?

a few weeks ago i was looking for a way to create some String constants for the fileds of a java class -> Generate constants for class attributes with maven? I got it working. I create an aspect ...
0
votes
1answer
434 views

Writing an annotation processor for maven-processor-plugin

I am interested in writing an annotation processor for the maven-processor-plugin. I am relatively new to Maven. Where in the project path should the processor Java source code go (e.g.: ...
0
votes
1answer
142 views

Get the actual type instead of the type parameter when java 1.6 annotation processing

Given these two classes public class MyClass extends MyAbstractClass<Cow> { ... } public abstract class MyAbstractClass<Foo_ extends AbstractFoo> { ... Key<Foo_> foo; ... } ...
0
votes
2answers
96 views

Where did the com.sun.mirror.* package go on OSX?

I'm currently trying to write an apt annotation processor. I can however not find the required tools.jar on my system. I'm on OSX, having installed the default JDK. Where can i find the apt-related ...
0
votes
3answers
280 views

Java annotation processing: how do I know if a round is the last one?

When extending AbstractProcessor, there is a possibility to override init(...), but there is no "opposite" method, which would be called after all rounds were processed. This is a problem: when you ...
0
votes
2answers
662 views

Eclipse 3.5+ - Annotation processor: Generated classes cannot be imported

I am using a 3rd party annotation processor for generating meta-data code (.java files) from the annotated classes in my project. I have successfully configured the processor through Eclipse ...
0
votes
1answer
322 views

How to capture an Enum from an AnnotationValue in an Annotation Processor

I am trying to read the value of an enum in an annotation using an annotation processor and annotation mirror, but I am getting back null. I think this has to do with the AnnotationValue wrapping an ...