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

js.factoryEditing.widget.attribute.AttributeEditorModel.js Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
//generated code don't edit manually
import { WidgetModel } from "../../base/WidgetModel";
import { StringValue } from "../../base/StringValue";
import { AttributeAccessorValue } from "../../base/AttributeAccessorValue";
export class AttributeEditorModel extends WidgetModel {
    constructor(creator) {
        super();
        this.creator = creator;
        this.attributeAccessor = new AttributeAccessorValue();
        this.inputId = new StringValue();
    }
    createWidget() {
        return this.creator(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy