You can divide your app into Activities (each Use Case may be an Activity) and Views (each screen that the user will interact with is a view), then use them in appropriate time. Check this out: http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html.
You can also create custom widgets to be reused within your Views http://code.google.com/webtoolkit/doc/latest/DevGuideUiCustomWidgets.html#composite . Concerning the size of the generated code, you can do some code splitting. It can lessen the need for large downloads when the app is started http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html Alisson Prestes www.google.com/profiles/javalisson On Thu, Sep 22, 2011 at 8:36 AM, Daniel Gerep <[email protected]>wrote: > Hi fellas, > > I'm new to GWT and I'm liking it a loot but there is a doubt; > > I know that GWT only work with one HTML but all my code, my actions will be > in the Project.java file? It will be a enormous file with thousands of > lines. Is it possible to separate things? > > Thanks in advance. > > -- > *Att* > *Daniel Gerep* > > -- > 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. > -- 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.
