I'm not sure there is a way to force gwt to do a clean compile, but most of the time you would solve this problem by blowing away your build folder each time. i.e. if you are using ant, make an target gwt_compile which depends on clean_gwt which would delete your output directory. If you are not using ant, you might want to consider it, or some other equivalent system such as maven, or others.
bryan On Oct 29, 1:30 am, ArunDhaJ <[EMAIL PROTECTED]> wrote: > Hi, > How to do clean compile? > > I'll explain the problem I'm facing: I've two java files. one file > have a static variable, the second file uses this static variable for > manipulations. It works fine until I change the value of this static > variable which is not reflecting in the second file. The second file > uses the old value. The problem gets rectified when I simply edit the > second file. > > The problem gets worse here. I've many such reference in many files. > For that I've to edit all the files, which is a tedious task. > > So what I'm looking for is, is there any option while compiling to > compile from the scratch. > > Thanks in Advance! > > -ArunDhaJ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
