- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
@BeanProperty on an Option field doesn't play well with java
Sun, 2009-01-18, 23:50
I was going to write this up as a Trac enhancement request but I thought
I'd post here for comments first:
if I annotate an Option field
@BeanProperty
var n:Option[String] = None
I get getter/setter pairs with java signatures of
public void setN(scala.Option n);
public scala.Option getN();
which isn't much good if I'm trying to have a class that plays well with
Java.
is it good (or good enough) design to have public fields which need
getter/setter methods be Options?
Is there any barrier to having @BeanProperty be Option aware and just
produce:
@BeanProperty var n:Option[String] = None
def setN(String n):Unit = { n_(Some(n))}
def getN:String = {n.getOrElse(null)}
Thanks for your comments
Brett Knights