[tcljava-user] Real "inner class" construction
Brought to you by:
mdejong
From: Jared H. <ho...@mo...> - 2008-03-11 16:17:06
|
In Jacl 1.4.0 Is there any way to instantiate a true "inner class" in jacl as is described in: http://java.sun.com/docs/books/tutorial/java/javaOO/summarynested.html I see how to instantiate a static nested class: set myNewStaticNestedObject [java::call OuterClass.NestedClass $constructorArg1] but I don't see the jacl equivalent to OuterClass.InnerClass innerObject = outerObject.new InnerClass(); I guess I could make my inner class static nested and pass in the outer class as an argument, but that gets messy in the java. Thanks, Jared |