12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
LWWidget.Data.Leaf = LWWidget.Data.inherits({
|
|
|
|
constructor: function (name, text) {
|
|
this.base(name);
|
|
this.text = text;
|
|
},
|
|
|
|
getText: function () {
|
|
return this.text;
|
|
}
|
|
|
|
});
|