28 lines
458 B
JavaScript
28 lines
458 B
JavaScript
|
class IgniteProperty {
|
||
|
constructor() {
|
||
|
this.onPropertyChange = [];
|
||
|
this._value = null;
|
||
|
}
|
||
|
|
||
|
get value() {
|
||
|
return this._value;
|
||
|
}
|
||
|
|
||
|
set value(val) {
|
||
|
var old = this._value;
|
||
|
this._value = val;
|
||
|
|
||
|
for (var i = 0; i < this.onPropertyChange.length; i++) {
|
||
|
this.onPropertyChange[i](old, val);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class IgniteAttribute {
|
||
|
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
IgniteProperty,
|
||
|
IgniteAttribute
|
||
|
};
|