Example usage for com.vaadin.ui MenuBar.Command interface-usage

List of usage examples for com.vaadin.ui MenuBar.Command interface-usage

Introduction

In this page you can find the example usage for com.vaadin.ui MenuBar.Command interface-usage.

Usage

From source file com.expressui.core.view.menu.MethodCommand.java

/**
 * Command for execute a method in a MethodDelegate.
 */
class MethodCommand implements MenuBar.Command {
    private MethodDelegate methodDelegate;

From source file com.expressui.core.view.menu.NullCommand.java

/**
 * A menu command that does nothing, useful for labels in the menu bar
 */
class NullCommand implements MenuBar.Command {
    @Override
    public void menuSelected(MenuBar.MenuItem selectedItem) {

From source file com.expressui.core.view.menu.PageCommand.java

/**
 * Command for loading pages in the application.
 */
class PageCommand implements MenuBar.Command {
    private Class<? extends Page> pageClass;

From source file com.foc.vaadin.gui.components.menuBar.FVMenuBarCommand.java

@SuppressWarnings("serial")
public abstract class FVMenuBarCommand implements MenuBar.Command {

    private FVMenuBar menuBar = null;
    private String code = null;

From source file com.hybridbpm.ui.component.bpm.TaskLayout.java

/**
 *
 * @author Marat Gubaidullin
 */
@SuppressWarnings("serial")
public class TaskLayout extends VerticalLayout

From source file com.hybridbpm.ui.MainMenu.java

/**
 * A responsive menu component providing user information and the controls for primary navigation between the views.
 */
@SuppressWarnings({ "serial", "unchecked" })
@DesignRoot
public final class MainMenu extends CssLayout implements Button.ClickListener, MenuBar.Command {

From source file org.opennms.features.vaadin.app.Command.java

public abstract class Command extends Action implements MenuBar.Command {

    public Command(String caption) {
        super(caption);
    }

From source file org.processbase.ui.core.template.HumanTaskWindow.java

/**
 *
 * @author marat
 */
public class HumanTaskWindow extends PbWindow implements MenuBar.Command, Button.ClickListener {

From source file uk.q3c.krail.core.view.component.NavigationCommand.java

public class NavigationCommand implements MenuBar.Command {

    private final UserSitemapNode node;
    private final Navigator navigator;

    public NavigationCommand(Navigator navigator, UserSitemapNode node) {