All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.factoryEditing.base.Value.js Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
export class Value {
    get() {
        return this.value;
    }
    set(value) {
        this.value = value;
        if (this.parent) {
            this.parent.update();
        }
    }
    getChildren() {
        return [];
    }
    finalize(parent) {
        this.parent = parent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy