Hi,
I have alittle confusion regarding the instances of inner and outer classes.The Book of Robert Heller states
"There must NORMALLY be a pre-existing instances of the outer class acting as context"
while
Java Notes say
"An instance of a non-static inner class can exist ONLY with an instance of its enclosing class. So it always has to be created within a context of an outer instance."
So, is it really a case of ONLY or it is a case of NORMALLY.
Thanx in Advance.