@qooxdoo/framework
Version:
The JS Framework for Coders
67 lines (50 loc) • 1.2 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() {
super();
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(child) {
this.children.push(child);
child.parent = this;
child.$$refreshInheritables();
},
_getChildren() {
return this.children;
},
getLayoutParent() {
return this.parent;
}
}
});