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: /**
13: * A component created from html text.
14: */
15: public class HTMLComponent extends Component {
16:
17: protected String html;
18:
19: public HTMLComponent(String html) {
20: this .html = html;
21: }
22:
23: protected void onRender() {
24: setElement(MyDOM.create(html));
25: }
26:
27: }
|