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

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

Introduction

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

Usage

From source file com.threerings.gwt.ui.ValueLabel.java

/**
 * Displays a dynamically changing value. Automatically handles regenerating its contents when the
 * value changes and registers and clears its listenership when it is added to and removed from the
 * DOM.
 */
public class ValueLabel<T> extends Label implements Value.Listener<T> {

From source file com.vaadin.client.ui.calendar.schedule.WeekLabel.java

/**
 * A label in the {@link SimpleWeekToolbar}
 * 
 * @since 7.1
 */
public class WeekLabel extends Label {

From source file com.vaadin.tests.widgetset.client.GenericWidget.java

public class GenericWidget<T> extends Label {
    public void setGenericText(T value) {
        setText(String.valueOf(value));
    }
}

From source file com.vaadin.tests.widgetset.client.minitutorials.v7a2.MyComponentWidget.java

public class MyComponentWidget extends Label {
    public static final String CLASSNAME = "mycomponent";

    public MyComponentWidget() {
        setText("This is MyComponent");
        setStyleName(CLASSNAME);

From source file com.vaadin.tests.widgetset.client.ProfilerCompilationCanary.java

public class ProfilerCompilationCanary extends Label {
    public ProfilerCompilationCanary() {
        if (Profiler.isEnabled()) {
            setText("Test does not work when profiler is enabled {dummyCode;}");
        } else {
            setText(getCanaryCode());

From source file com.vaadin.v7.client.ui.calendar.schedule.WeekLabel.java

/**
 * A label in the {@link SimpleWeekToolbar}
 *
 * @since 7.1
 */
public class WeekLabel extends Label {

From source file com.webgocommerce.client.uiutil.UILabel.java

/**
 *
 * @author SISTEMAS
 */
public class UILabel extends Label {

From source file com.webgocommerce.client.uiutil.UISeparador.java

/**
 *
 * @author SISTEMAS
 */
public class UISeparador extends Label {

From source file de.swm.commons.mobile.client.widgets.DropDownItem.java

/**
 * Defines an entry inside a drop down box. The entry contains an internationalization key which is translated inside
 * the drop down box.
 */
public class DropDownItem extends Label {

From source file de.swm.commons.mobile.client.widgets.ErrorLabel.java

/**
 * Simple implementation of an error Output element. The {@link ErrorLabel} should be used if one form field will
 * display exactly one message at time.
 * 
 * @author wiese.daniel <br>
 *         copyright (C) 2012, SWM Services GmbH