Example usage for com.vaadin.ui HorizontalLayout subclass-usage

List of usage examples for com.vaadin.ui HorizontalLayout subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui HorizontalLayout subclass-usage.

Usage

From source file org.jumpmind.metl.ui.common.ButtonBar.java

public class ButtonBar extends HorizontalLayout {

    private static final long serialVersionUID = 1L;

    static final String STYLE = "button-bar";

From source file org.jumpmind.metl.ui.common.TopBar.java

public class TopBar extends HorizontalLayout implements ViewChangeListener {

    private static final long serialVersionUID = 1L;

    protected final Logger log = LoggerFactory.getLogger(getClass());

From source file org.jumpmind.metl.ui.views.AdminView.java

@UiComponent
@Scope(value = "ui")
@TopBarLink(category = Category.Admin, name = "Admin", id = "admin", icon = FontAwesome.GEARS, menuOrder = 10)
public class AdminView extends HorizontalLayout implements View, IUiPanel, ItemClickListener {

    private static final long serialVersionUID = 1L;

From source file org.jumpmind.metl.ui.views.DeployView.java

@UiComponent
@Scope(value = "ui")
@TopBarLink(category = Category.Deploy, name = "Deploy", id = "deploy", icon = FontAwesome.GEARS, menuOrder = 10)
public class DeployView extends HorizontalLayout implements View {

    private static final long serialVersionUID = 1L;

From source file org.jumpmind.metl.ui.views.design.EditFlowPanel.java

@SuppressWarnings("serial")
public class EditFlowPanel extends HorizontalLayout implements IUiPanel, IFlowRunnable {

    final Logger log = LoggerFactory.getLogger(getClass());

    ApplicationContext context;

From source file org.jumpmind.metl.ui.views.DesignView.java

@UiComponent
@Scope(value = "ui")
@TopBarLink(category = Category.Design, name = "Design", id = "design", icon = FontAwesome.SHARE_ALT, menuOrder = 1, useAsDefault = true)
public class DesignView extends HorizontalLayout implements View {

    private static final long serialVersionUID = 1L;

From source file org.jumpmind.metl.ui.views.ManageView.java

@UiComponent
@Scope(value = "ui")
@TopBarLink(category = Category.Manage, name = "Manage", id = "manage", icon = FontAwesome.GEARS, menuOrder = 20)
public class ManageView extends HorizontalLayout implements View, IUiPanel, IBackgroundRefreshable {

    private static final String ANY = "<Any>";

From source file org.opencms.ui.components.CmsRemovableFormRow.java

/**
 * Removable form row.<p>
 *
 * @param <T> the filed type
 */
public class CmsRemovableFormRow<T extends AbstractField<?>> extends HorizontalLayout {

From source file org.opencms.ui.dataview.CmsPagingControls.java

/**
 * Set of buttons allowing the user to navigate between pages in a paged list.<p>
 */
public class CmsPagingControls extends HorizontalLayout {

    /**

From source file org.opennms.features.jmxconfiggenerator.webui.ui.ButtonPanel.java

public class ButtonPanel extends HorizontalLayout implements ModelChangeListener<UiState> {
    private final Button next;
    private final Button previous;

    public ButtonPanel(ClickListener listener) {
        next = UIHelper.createButton("next", IconProvider.BUTTON_NEXT, listener);