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

io.github.mmm.ui.api.widget.menu.UiNavigationBar Maven / Gradle / Ivy

The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.ui.api.widget.menu;

import io.github.mmm.ui.api.factory.UiWidgetFactoryNative;
import io.github.mmm.ui.api.widget.UiNativeWidget;
import io.github.mmm.ui.api.widget.UiRegularWidget;

/**
 * {@link UiAbstractMenuBar} that represents a vertical navigation bar. An example may look like this:
* * * @since 1.0.0 */ public interface UiNavigationBar extends UiAbstractMenuBar, UiAbstractMenuWithItems, UiRegularWidget, UiNativeWidget { /** The {@link io.github.mmm.ui.api.datatype.UiStyles#add(String) style} or element name for this widget. */ String STYLE = "ui-navbar"; /** * @return the new {@link UiNavigationBar}. */ static UiNavigationBar of() { return UiWidgetFactoryNative.get().create(UiNavigationBar.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy