My java class is as follows

public class Test {

    protected enum TestEnum {A, B, C};

    public Test(TestEnum te) {

    }

}

here is my Scala

class ScalaEnum(myEnum: TestEnum) extends Test(myEnum) {

}

I receive the following error message

class TestEnum in object Test cannot be accessed in object Test Access to protected class TestEnum not permitted because enclosing class class ScalaEnum in package XXX is not a subclass of object Test in package YYY where target is defined

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

As @Alex and @Jean-Phillipe said, this has not much to do with the fact that you're trying to access an enum and more to do with the fact that inner-class enums are implicitly static: see this answer, for example.

That means that you're running up against this limitation. Changing TestEnum to be public works around the problem for me with Scala 2.9.1.

Having said all that, despite Martin's vehement objections to removing the limitation, your code works as expected with Scala 2.10.

link|improve this answer
feedback

It sounds like the enum class is implicitly static, because Scala calls it "object Test". Try qualifying it in the constructor (e.g. Test.TestEnum), and if that doesn't work, relaxing the visibility to package access might.

link|improve this answer
2  
I still get the error if I change to public – deltanovember Jul 15 '11 at 8:12
OK, what about if you qualify the name? :) – Alex Cruise Jul 15 '11 at 17:46
same even I do both – deltanovember Jul 15 '11 at 21:23
feedback

Your Answer

 
or
required, but never shown

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