vote up 5 vote down star
5

I'm a little new to the Java 5 annotations and I'm curious if either of these are possible:

This annotation would generate a simple getter and setter for you.

@attribute
private String var = "";

The @NotNull annotation indicates that a variable connot be null so you don't have to write that boilerplate code every time.

/*
 * @param s @NotNull
 */
public void setString(String s){
    ...
}

Will either of these work? They seem like the first things I would write annotations for if I could. Since I don't see much about these when I read the docs I'm assuming that it's not really what annotations are about. Any direction here would be appreciated.

flag

5 Answers

vote up 7 vote down check

Annotation processing occurs on the abstract syntax tree. This is a structure that the parser creates and the compiler manipulates.

The current specification (link to come) says that annotation processors cannot alter the abstract syntax tree. One of the consequences of this is that it is not suitable to do code generation.

If you'd like this sort of functionality, then have a look at XDoclet. This should give you the code generation preprocessing I think you are looking for.

For your @NonNull example, JSR-305 is a set of annotations to enhance software defect detection, and includes @NonNull and @CheckForNull and a host of others.

link|flag
You can create a superclass... See code.google.com/p/javadude/… – Scott Stanchfield Mar 25 at 14:26
vote up 0 vote down

It's possible, just not where you're declaring them.

Check out http://code.google.com/p/javadude/wiki/Annotations.

I have a class annotated like

package sample;
import com.javadude.annotation.Bean;
import com.javadude.annotation.Property;
import com.javadude.annotation.PropertyKind; 

@Bean(properties={
    @Property(name="name"),
    @Property(name="phone", bound=true),
    @Property(name="friend", type=Person.class, kind=PropertyKind.LIST)
})
public class Person extends PersonGen {}

And it generates the PersonGen class for you, containing getters/setters, etc

The processor also does quite a bit more. Note that I'm working on a new version of it that has a little API breakage from the current version

link|flag
vote up 1 vote down

There is project named OVal and i think it does what you want. http://oval.sourceforge.net/

If i remeber right for advance thing AspectJ is needed, however simple check work without AspectJ. check it out.

There is also Hibernate Validator, check it out too :P

link|flag
vote up 4 vote down

The @attribute you are referring too cant work with annotations as they are now in Java (as jamesh pointed out).

What you are probably looking for is "properties" which dont exist yet in Java. But is is a very hot topic right now, and we might get them in Java 7 or maybe Java 8 (as I am still stuck on 1.4.2 it wont help me, but it might help you).

There was an interesting discussion allusion to implementing properties with annotations in the Java Posse episode #219.

link|flag
Probably won't help me too much. I just left java 1.4, and that's only for this project. Ahh the bleeding edge of Oracle. – Jason Tholstrup Dec 8 '08 at 20:32
vote up 4 vote down

Is there a way to use annotations in Java to replace accesssors?

In short, no, the Java 5/6 compiler does not support this and it would be difficult for third parties to add such support in a compiler-agnostic manner.

To get a better handle on annotations, I'd start with JUnit. If you write code for versions 3 (pre-annotations) and 4 (annotation-based), you quickly get a handle on how the framework replaced a contract based on naming patterns with one that was annotation-based.

For a more dramatic example, compare EJB 2 with EJB 3.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.