- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
@BeanInfo warning: "Could not determine source class"
Mon, 2010-11-15, 06:38
I'm just getting started with javabeans in scala and was wondering if
I should be concerned about this warning...
[warn] Could not determine source for class
com.googlecode.project.SettingsBeanInfo
@BeanInfo class Settings(var foo:Int=640, var bar:Int=480)
When I add the @BeanInfo annotation to get the BeanInfo class created,
it appears to get created, but I wanted know what the warning actually
meant. I'm using sbt, but figured it was a scalac issue.
Thanks.
On 15/11/2010 06:37, Josh Stratton wrote:
> I'm just getting started with javabeans in scala and was wondering if
> I should be concerned about this warning...
>
> [warn] Could not determine source for class
> com.googlecode.project.SettingsBeanInfo
>
> @BeanInfo class Settings(var foo:Int=640, var bar:Int=480)
>
> When I add the @BeanInfo annotation to get the BeanInfo class created,
> it appears to get created, but I wanted know what the warning actually
> meant. I'm using sbt, but figured it was a scalac issue.
FYI, if I compile a simple Scala file with:
fsc.bat -d bin -deprecation -Xmigration Base.scala
with the above line (and import scala.reflect.BeanInfo, of course), I don't have this
warning. So, maybe it is related to sbt, after all. Or something else.