This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Oddity trying to import members of an object?

No replies
Robin Barooah
Joined: 2008-12-21,
User offline. Last seen 3 years 27 weeks ago.
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

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland