Example usage for com.google.gwt.user.client.ui HorizontalPanel subclass-usage

List of usage examples for com.google.gwt.user.client.ui HorizontalPanel subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui HorizontalPanel subclass-usage.

Usage

From source file org.jboss.bpm.console.client.process.DeploymentPanel.java

/**
 * @author Heiko.Braun <heiko.braun@jboss.com>
 */
public class DeploymentPanel extends HorizontalPanel {

    private Controller controller;

From source file org.jboss.bpm.console.client.process.InstanceDetailView.java

/**
 * @author Heiko.Braun <heiko.braun@jboss.com>
 */
public class InstanceDetailView extends HorizontalPanel implements ViewInterface {

    public final static String ID = InstanceDetailView.class.getName();

From source file org.jboss.bpm.console.client.task.ParticipantPanel.java

/**
 * @author Heiko.Braun <heiko.braun@jboss.com>
 */
class ParticipantPanel extends HorizontalPanel implements ViewInterface {

    public final static String ID = ParticipantPanel.class.getName();

From source file org.jboss.errai.ui.nav.client.local.testpages.BasePageForLifecycleTracing.java

/**
 * Base class for test pages to record the calls to lifecycle methods.
 *
 * Used in tests to ensure the correct order lifecycle methods.
 *
 * @author Johannes Barop <jb@barop.de>

From source file org.jboss.wise.gwt.client.widget.URLOverridePanel.java

/**
 * User: rsearls
 * Date: 8/3/15
 */
public class URLOverridePanel extends HorizontalPanel {

From source file org.jbpm.form.builder.ng.model.common.panels.CalendarPanel.java

public class CalendarPanel extends HorizontalPanel {

    private final Widget icon;
    private final Widget text;

    private int iconDefaultWidth = 0;

From source file org.jbpm.formapi.common.panels.CalendarPanel.java

public class CalendarPanel extends HorizontalPanel {

    private final Widget icon;
    private final Widget text;

    private int iconDefaultWidth = 0;

From source file org.jbpm.formbuilder.client.effect.view.ValidationListPanel.java

public class ValidationListPanel extends HorizontalPanel {

    private static final String NULL_VALIDATION = "...";
    private final I18NConstants i18n = FormBuilderGlobals.getInstance().getI18n();
    private final Button addValidationButton = new Button(i18n.AddValidationButton());
    private final ListBox validationsAvailableList = new ListBox();

From source file org.jbpm.formbuilder.client.tasks.SimpleSearchView.java

public class SimpleSearchView extends HorizontalPanel {

    private final I18NConstants i18n = FormBuilderGlobals.getInstance().getI18n();
    private final EventBus bus = CommonGlobals.getInstance().getEventBus();
    private final TextBox searchQuery = new TextBox();
    private final Button searchButton = new Button(i18n.SearchButton());

From source file org.kaaproject.kaa.sandbox.web.client.mvp.view.widget.HeaderMenuItems.java

public class HeaderMenuItems extends HorizontalPanel {

    private ActionsLabel collapsedMenu;

    private List<ActionsLabel> items = new ArrayList<>();
    private boolean isCollapsed = false;