Given the following Scala object:

object ScalaObject {
    val NAME = "Name"
}

It appears that the Scala compiler generates a parameterless method to access the NAME field. However, when I try to access this field from Java, it looks like the only way to access this field is as a parameterless method like:

System.out.println(ScalaObject$.MODULE$.NAME());

Is there a way to coax the Scala compiler to allow Java to access the val per the expected Java idiom as:

System.out.println(ScalaObject$.MODULE$.NAME);
link|improve this question

Does the same happen with lower-case vals? – ziggystar Dec 8 '11 at 17:38
It's not the expected Java idiom by the way, it's the expected Scala idiom. In terms of bytecode, Scala (almost?) always exposes fields as getter methods with the same name. – Andrzej Doyle Dec 8 '11 at 17:57
1  
@AndrzejDoyle, I'm not sure what you're saying. In Java, it's expected to access static final fields without parentheses because its the only way to do so. What you seem to be suggesting is that in Scala, the expected technique is to use getter methods. Regardless, whatever is Scala's preferred technique, doesn't seem relevant to a Java client of an API that happens to be implemented in Scala. – Jeff Axelrod Dec 8 '11 at 18:13
feedback

2 Answers

up vote 6 down vote accepted

Strictly, the answer is no, because scala isn't generating just a field, but a pair of methods for accessing it. However, annotating the scala val with @scala.reflect.BeanProperty will produce Java-style getter and setter methods.

so while you wouldn't be able to say (in your case)

ScalaObject$.MODULE$.NAME

You would be able to say

ScalaObject$.MODULE$.getNAME()

Which would be a more Java-like idiom, just not the one you were hoping for.

N.B. I haven't tried @BeanProperty with an all-uppercase name like that, so I'm not sure what it would actually produce.

link|improve this answer
feedback

No, because in bytecode there are different instruction to access field and invoke method. You must patch Javac then (and your IDE syntax highlighter).

link|improve this answer
4  
I think the OP expects some annotation to get scalac to produce Java fields, not a way to access the compiled Java methods as fields. – themel Dec 8 '11 at 16:22
@themel is correct. – Jeff Axelrod Dec 8 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

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