> I can't see that what you are proposing is that much different from the
> standard anonymous ClickListener per button approach.
Hmm, well may be there is. The standard anonymous clicklistener
approach is of type :
Button b = new Button("This is a Button", new ClickListener(){void
onClick (Widget sender)});
As can be seen, this requires one instance (of type Button), and one
class (anonymous ClickListener) creation.
On the other hand, in my case, it is :
EButton e = new EButton(){void onClick (Widget sender)};
This case requires one class ( anonymous extended EButton) creation.
Your thoughts ..??
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---