- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Oddity trying to import members of an object?
Sat, 2008-12-27, 08:44
Hi,
I've been having trouble importing the members of an object, which is something I do all the time. It's entirely possible I've gone code-blind over the holidays, but this is really stumping me.
The source looks like this:
package org.sublime.amazon.simpleDB { object Query { abstract case class Expression { //def query :String }...
Which compiles fine. From the console (with the classpath set correctly by mvn scala:console), I do this:
scala> import org.sublime.amazon.simpleDB.Query._ import org.sublime.amazon.simpleDB.Query._<console>:4: error: value Query is not a member of package org.sublime.amazon.simpleDB import org.sublime.amazon.simpleDB.Query._ ^
scala> import org.sublime.amazon.simpleDB.Query import org.sublime.amazon.simpleDB.Query
As you can see, my attempt to import the members of Query fails with "Query is not a member of package...", and yet my attempt to import Query itself succeeds, so there's clearly something there.
Am I missing something obvious here?
The full source of Query.scala is here: http://github.com/rbarooah/simpledb-scala-binding/tree/17cb3a8799d40e388a64f617296a81a9472ae3e3/src/main/scala/org/sublime/amazon/simpleDB/Query.scala
And you can reproduce the problem by doing:
git clone git://github.com/rbarooah/simpledb-scala-binding.git broken cd brokenmvn compile scala:console
And then attempting the import.
Please tell me it's code blindness and I've missed something obvious! Any insight gladly appreciated.
Thanks.
--
-Robin
Robin Barooah
http://www.sublime.org
I've been having trouble importing the members of an object, which is something I do all the time. It's entirely possible I've gone code-blind over the holidays, but this is really stumping me.
The source looks like this:
package org.sublime.amazon.simpleDB { object Query { abstract case class Expression { //def query :String }...
Which compiles fine. From the console (with the classpath set correctly by mvn scala:console), I do this:
scala> import org.sublime.amazon.simpleDB.Query._ import org.sublime.amazon.simpleDB.Query._<console>:4: error: value Query is not a member of package org.sublime.amazon.simpleDB import org.sublime.amazon.simpleDB.Query._ ^
scala> import org.sublime.amazon.simpleDB.Query import org.sublime.amazon.simpleDB.Query
As you can see, my attempt to import the members of Query fails with "Query is not a member of package...", and yet my attempt to import Query itself succeeds, so there's clearly something there.
Am I missing something obvious here?
The full source of Query.scala is here: http://github.com/rbarooah/simpledb-scala-binding/tree/17cb3a8799d40e388a64f617296a81a9472ae3e3/src/main/scala/org/sublime/amazon/simpleDB/Query.scala
And you can reproduce the problem by doing:
git clone git://github.com/rbarooah/simpledb-scala-binding.git broken cd brokenmvn compile scala:console
And then attempting the import.
Please tell me it's code blindness and I've missed something obvious! Any insight gladly appreciated.
Thanks.
--
-Robin
Robin Barooah
http://www.sublime.org