Marjan
Marjan

Reputation: 259

Generated java file by Generators in GWT?

How can I find the java file which is generated during compile time when Generator is being used, for example when we have uiBinder it seems that GWT.create calls some generators and generates a java file, how can I get access to this file?

Any idea?

Upvotes: 1

Views: 551

Answers (1)

Alan Hadsell
Alan Hadsell

Reputation: 11

The "-gen" parameter to the compiler nominates a directory where the generated code is put. See http://code.google.com/webtoolkit/doc/latest/FAQ_DebuggingAndCompiling.html#What_are_the_options_that_can_be_passed_to_the_compiler

Upvotes: 1

Related Questions