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

io.github.mmm.ui.api.widget.menu.UiMenuItemSeparator 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;

/**
 * {@link UiAbstractMenuItem} that acts as a separator. A separator is visualized as a line that separates
 * other {@link UiAbstractMenuItem}s. It has no further functionality.
 *
 * @since 1.0.0
 */
public interface UiMenuItemSeparator extends UiAbstractMenuItem {

  @Override
  default String getText() {

    return "-";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy