Inner class problem... Please help me.

In a class, "this" is used to reference the class instance itself. When I used "this" keyword in a inner class, inner class instance was referenced. But, I want to use "this" keyword in the inner class to point the instance of the class which contains the inner class. Is this possible? Is there any other way to solve my problem?

Please, Help~

[371 byte] By [digibio] at [2007-9-26 3:12:53]
# 1
you shouldmaybe static functions of the parent classusing parentclass.staticfunction();
zuby1 at 2007-6-29 11:21:45 > top of Java-index,Archived Forums,Java Programming...
# 2
I can't test it now, but supposing that the class containing your inner class is called outerClass, I think you can use outerClass.this in your inner class.
U063667 at 2007-6-29 11:21:45 > top of Java-index,Archived Forums,Java Programming...
# 3
http://java.sun.com/products/jdk/1.1/docs/guide/innerclasses/spec/innerclasses.doc.html http://java.sun.com/docs/books/tutorial/java/javaOO/innerclasses.html
zuby1 at 2007-6-29 11:21:45 > top of Java-index,Archived Forums,Java Programming...
# 4
If you outer class (the one that contains the inner class) is named Abcd, use Abcd.this.<variable name> in the inner class to access variables.
mayank_ranjan at 2007-6-29 11:21:45 > top of Java-index,Archived Forums,Java Programming...