I have an Java-Annotation that return a double value:

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DoubleValue {
  double value();
} 

When i try to attach the annotation to a field in a scala class and the value is negativ like here:

class Test {
  @DoubleValue(-0.05)
  var a = _
}

i get an compiler error with the message: "annotation argument needs to be a constant; found: 0.05.unary_-". I understood that i need a numerical literal and i looked into the Scala Language Specification and it seems, that the - sign is only used for the exponent but not for the mantissa. Does someone has an idea how i can have a negative value as runtime information using annotations?

Thanks, Klinke

link|improve this question
1  
It looks like you may have found the dark side of operators as methods. :) – Matthew Flaschen Jun 2 '10 at 15:55
Are you using Scala 2.7? Annotation handling in 2.8 is much improved. – Randall Schulz Jun 2 '10 at 16:13
2  
By the way, this is not a general issue of negative floating-point constants, just their use in annotation arguments. And integers are OK even now. – Randall Schulz Jun 2 '10 at 16:28
2  
So, you've found a bug. I have entered it in the Scala bug database: lampsvn.epfl.ch/trac/scala/ticket/3521 - If you find bugs then please report them, otherwise the Scala developers won't know and the bug won't be fixed. – Jesper Jun 2 '10 at 17:50
1  
@Jasper: the Scala bug database itself says, "Are you certain it's a bug, and not simply your imperfect understanding of the language? If you have any doubt, please ask somewhere else before opening a ticket". – Matt R Jun 2 '10 at 20:16
show 4 more comments
feedback

1 Answer

up vote 7 down vote accepted

It appears that this is a bug.

Until the bug is fixed, you can take advantage of the fact that arithmetic on a constant is a constant and use

@DoubleValue( 0-0.05 )
link|improve this answer
Thanks, that works and is a much better workaround then the "solution" i had in mind. – Klinke Jun 3 '10 at 9:41
feedback

Your Answer

 
or
required, but never shown

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