01: /*
02: * MyGWT Widget Library
03: * Copyright(c) 2007, MyGWT.
04: * licensing@mygwt.net
05: *
06: * http://mygwt.net/license
07: */
08: package net.mygwt.ui.client.widget;
09:
10: import net.mygwt.ui.client.MyDOM;
11:
12: import com.google.gwt.user.client.ui.Widget;
13:
14: /**
15: * A widget created from html text.
16: */
17: public class HTMLWidget extends Widget {
18:
19: public HTMLWidget(String html) {
20: setElement(MyDOM.create(html));
21: }
22:
23: }
|