[I am however amazed that under your client folder you have over 2000 
files??? Not my place to say, but I would look at why there is class 
explosion. Sounds like a maintenance nightmare.]


2000 class files wouldn't be that hard to hit when you think about anon 
subclasses

class SomeClass extends Composite{
 
  Button b = new Button();

   public SomeClass(){
       b.addClickHandler(new ClickHandler(){...});
       b.addFocusHandler(new FocusHandler(){...});
   } 

would be 3 .class files. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ZuW_ZSIxnJcJ.
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.

Reply via email to