Good evening everybody,
I have a probleme to solve
I have a main class :
MainClass{
String name;
String firstname;
}
2 sub classes :
ChildClass1 extends MainClass{
String anotherProperty1;
}
ChildClass2 extends MainClass{
String anotherProperty2;
}
I'd like an editor for properties of my MainClass I use in my sub clas
editor :
MainClassEditor{
TextBox name;
TextBox firstname;
}
ChildClass1Editor{
TextBox anotherProperty1;
MainClassEditor nameAndFirstNameEditor;
}
ChildClass2Editor{
TextBox anotherProperty2;
MainClassEditor nameAndFirstNameEditor;
}
Is it possible or I need a class to group name and firstname
properties?
can you help me?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.