|
Htk.Widget = new Class
|
|
({
|
|
Extends: Vn.Object
|
|
|
|
/** Main HTML node that represents the widget **/
|
|
,node: null
|
|
|
|
,createElement: function (tagName)
|
|
{
|
|
this.node = document.createElement (tagName);
|
|
return this.node;
|
|
}
|
|
|
|
,getNode: function ()
|
|
{
|
|
return this.node;
|
|
}
|
|
});
|