Hello,
can anyone help me to change gwt.properties file in a way that I can identify the place of generated files by GWT compiler? I don't know how should I use -gen parameter...
Generally, Is it possible to see the generated implementation of suppose uiBinderMainUiBinder interface in the below example?
public class uiBinderMain extends Composite {
private static uiBinderMainUiBinder uiBinder = GWT.create(uiBinderMainUiBinder.class);
interface uiBinderMainUiBinder extends UiBinder<Widget, uiBinderMain> {}
...
}