Annotating constructor parameters seems to do nothing when compiled to bytecode. I get no compiler warnings either.

The following works. getAnnotations for the name field returns javax.annotation.Nullable.

class Person {
    @Nullable var name: String = _;
}

The following doesn't, neither with val or var.

class Person(@Nullable var name: String)

This is probably not intentional, so is there something I am missing or should I go file a bug report?

link|improve this question

feedback

1 Answer

up vote 15 down vote accepted

You need to specify what should get annotated when you specify annotations on constructor parameters.

To do that annotate your annotation with one ore more annotations from scala.annotation.target, e.g. getter, setter or as in your case field:

import annotation.target.field

class Person(@(Nullable @field) var name: String)

You can also use type aliases for that:

type NullableField = Nullable @field

class Person(@NullableField var name: String)
link|improve this answer
1  
More information can be found here: lampsvn.epfl.ch/trac/scala/ticket/3421 and lampsvn.epfl.ch/trac/scala/ticket/3596 – michael.kebe Sep 22 '10 at 13:41
Thanks, works like a charm! – ponzao Sep 22 '10 at 13:42
feedback

Your Answer

 
or
required, but never shown

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