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

js.factoryEditing.widget.navbar.NavbarModel.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 { Navbar } from "./Navbar";
import { StringValue } from "../../base/StringValue";
export class NavbarModel extends WidgetModel {
    constructor(navItems, factoryEditorModel) {
        super();
        this.navItems = navItems;
        this.factoryEditorModel = factoryEditorModel;
        this.projectName = new StringValue();
    }
    createWidget() {
        return new Navbar(this);
    }
    setViewModel(viewModel) {
        this.viewModel = viewModel;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy