Hallo
Vermutlich willst Du sowas:
InternalFrame twoObj = (InternalFrame)Class.forName("two").newInstance();
if(twoObj instanceof two) {
((twoObj).uebergabe_handle(this);
((two)twoObj).uebergabe_handle(this); //so meinte ich das natürlich
}
Siehe die Methoden:
java.lang.Class.getConstructors(...)
java.lang.reflect.Constructor.newInstance(...)
sprich muss ich auf twoObj getConstructors anwenden oder schon vorher?
getConstructor musst Du natürlich auf die Klasse two anwenden:
two.class.getConstructor()
Grüße
Daniel