You would start with:
public class CustomWidget extends Widget {
public CustomWidget() {
super();
setElement(Document.get().createDivElement());
}
}
This will give you a simple Widget represented by a <div> element. In general just take a look at the GWT source code to see how to write a Widget from scratch.
-- J.
Am Sonntag, 4. März 2012 22:20:01 UTC+1 schrieb Jan: