Hi, i'm new in the NG.
I'm writing a simple application with Eclipse using the Visual Editor
plugin. I've created 2 GUIs for my forms. These GUIs have been written with
SWT Library.
Now my question is: from my principal form, when i click on a button, i want
to create the second form (that is in a separated class inside my project),
how can i accomplish that?
The problem is i create the new class by this way
MyClass name = new MyClass();
but i can't do nothing else because all the methods of the new class are
private and not visible and so i can't call the method
name.open();
that will show my new form
Is there anyone can help me?
Thanks
Davide
nipspu - 17 Jan 2005 16:54 GMT
> project), how can i accomplish that?
why dont you change the visibility keywords? or maybe you could make the
second gui as an inner class?