js.factoryEditing.widget.attribute.AttributeEditorModel.js Maven / Gradle / Ivy
//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 - 2025 Weber Informatics LLC | Privacy Policy