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

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

Introduction

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

Usage

From source file org.spiffyui.spsample.client.WidgetsPanel.java

/**
 * This is the widgets sample panel
 *
 */
public class WidgetsPanel extends HTMLPanel implements CloseHandler<PopupPanel> {
    private static final SPSampleStrings STRINGS = (SPSampleStrings) GWT.create(SPSampleStrings.class);

From source file org.waveprotocol.wave.client.widget.common.ImplPanel.java

/**
 * A generic panel for use by UiBinder templates, for widgets that require more
 * powerful control over their DOM and/or child lifecycle.
 *
 * Like {@link HTMLPanel}, its state can be defined in UiBinder using regular
 * HTML, allowing child widgets to be attached statically at arbitrary

From source file pl.itrack.client.local.view.widgets.DivContainer.java

@Dependent
public class DivContainer extends HTMLPanel {

    public DivContainer() {
        super(StringUtils.EMPTY);
    }

From source file uk.ac.ncl.openlab.intake24.client.ui.foodlist.LookupFoodListItem.java

public class LookupFoodListItem extends HTMLPanel {
    private final String description;
    private EncodedFood resolved = null;

    public LookupFoodListItem(final String description) {
        super(description);