@qooxdoo/framework
Version:
The JS Framework for Coders
76 lines (59 loc) • 1.31 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Fabian Jakobs (fjakobs)
************************************************************************ */
qx.Class.define("qx.test.core.InheritanceDummy",
{
extend : qx.core.Object,
construct : function()
{
this.base(arguments);
this.children = [];
},
properties :
{
enabled : { inheritable : true },
width_ :
{
inheritable : true,
themeable : true
},
height_ :
{
inheritable : true,
themeable : true
},
left_ :
{
inheritable : true,
themeable : true
},
top_ :
{
inheritable : true,
themeable : true
}
},
members :
{
add : function(child)
{
this.children.push(child);
child.parent = this;
child.$$refreshInheritables();
},
_getChildren : function() {
return this.children;
},
getLayoutParent : function() {
return this.parent;
}
}
});