I added this to my .gwt.xml file:
Code:
<inherits name="com.smartgwtee.tools.Tools"/>
Code:
IButton vbButton = new IButton("VisualBuilder");
vbButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
com.smartgwtee.tools.client.SCEE.openVisualBuilder();
}
});
Obviously I need to remove that for production but it seemed a lot easier for development not to be trying to move/copy my hibernate stuff around...
Leave a comment: