Consider the below code:
class abstract Normal1 extends Something
{
}
class Outer
{
class abstract Inner extends Normal1
{
}
}
class General extends Outer.Inner // Problem occurs at this
{
}
The error I am getting is "No enclosing instance of type PerfHelper is available due to some intermediate constructor invocation"
My question is can I extend the inner class like above ?
class abstract normal1 extends something { } class outer extends normal1 <== change1 { class abstract inner extends outer <==change 2 { } } class General extends outer.inner <== Problem occurs at this { }
what is the solution for this – user911333 Nov 18 '11 at 06:23