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 com.akjava.gwt.ttstest.client.EventLogger.java

public class EventLogger extends HTMLPanel {
    private int maxSize = 10;

    public EventLogger(int logSize) {
        super("");
        this.maxSize = logSize;

From source file com.alkacon.geranium.client.ui.HTMLHoverPanel.java

/**
 * A HTML Panel implementation toggles the I_CmsStateCss.cmsHovering CSS class on mouse over.<p>
 */
public class HTMLHoverPanel extends HTMLPanel implements HasMouseOutHandlers, HasMouseOverHandlers {

    /**

From source file com.arcbees.gquery.elastic.client.ElasticHtmlPanel.java

public class ElasticHtmlPanel extends HTMLPanel {
    private ElasticOption options = new ElasticOption();

    public ElasticHtmlPanel(String html) {
        super(html);
    }

From source file com.cgxlib.xq.client.plugins.widgets.WidgetsHtmlPanel.java

/**
 * This {@link HTMLPanel} takes as content an element already
 * attached to the DOM. If {@link Widget widgets} are present in the children of
 * the element to attach, they will be automatically adopted by the panel in
 * order to keep a consistent widgets hierarchy.
 */

From source file com.devbliss.gwtbliss.client.ui.Article.java

/**
 * A HTML5 Article Element
 *
 * @see <a
 *      href="http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-article-element">W3C
 *      Spec Draft</a>

From source file com.devbliss.gwtbliss.client.ui.Aside.java

/**
 * A HTML5 Aside Element
 *
 * @see <a
 *      href="http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-aside-element">W3C
 *      Spec Draft</a>

From source file com.devbliss.gwtbliss.client.ui.Footer.java

/**
 * A HTML5 Footer Element
 *
 * @see <a
 *      href="http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-footer-element">W3C
 *      Spec Draft</a>

From source file com.devbliss.gwtbliss.client.ui.Header.java

/**
 * A HTML5 Header Element
 *
 * @see <a
 *      href="http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-header-element">W3C
 *      Spec Draft</a>

From source file com.devbliss.gwtbliss.client.ui.Hgroup.java

/**
 * A HTML5 Hgroup Element
 *
 * @see <a
 *      href="http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-hgroup-element">W3C
 *      Spec Draft</a>

From source file com.devbliss.gwtbliss.client.ui.ListItemPanel.java

/**
 * A panel for list item objects.
 *
 * @author <a href="mailto:jb@barop.de">Johannes Barop</a>
 *
 */