List of usage examples for com.google.gwt.user.client.ui Label subclass-usage
From source file com.google.gerrit.client.ui.SmallHeading.java
public class SmallHeading extends Label { public SmallHeading() { setStyleName(Gerrit.RESOURCES.css().smallHeading()); } public SmallHeading(final String text) {
From source file com.google.gwt.uibinder.test.client.EnumeratedLabel.java
/** * A label that has an enum, to test UiBinder enum parsing. */ public class EnumeratedLabel extends Label { /**
From source file com.google.gwt.uibinder.test.client.FooIsWidgetImpl.java
/** * Implementation of {@link FooIsWidget}. A simple {@link Label} provides enough functionality. */ public class FooIsWidgetImpl extends Label implements FooIsWidget { }
From source file com.google.gwt.uibinder.test.client.NeedlesslyAnnotatedLabel.java
/** * A widget with a UiConstructor annotation that it doesn't need, * to confirm these work. */ public class NeedlesslyAnnotatedLabel extends Label { @UiConstructor
From source file com.googlecode.simplegwt.command.client.ui.CommandLabel.java
/**
* A {@link Label} that executes a {@link Command} when clicked.<br />
* <h3>CSS Style Rules</h3>
* <ul>
* <li>.simpleGwt-CommandLabel { }</li>
* </ul>
From source file com.gwtm.ui.client.widgets.Label.java
public class Label extends com.google.gwt.user.client.ui.Label { public LabelVariant labelTemplate = LabelVariant.none; public BackgroundVariant labelBackgroundVariant = BackgroundVariant.none; // 6 attributes very common to change and tryout within gwtdesigner
From source file com.gwtmobile.ui.client.widgets.DropDownItem.java
public class DropDownItem extends Label { String _value; public void setValue(String value) { _value = value; }
From source file com.peter.vaadin.components.others.mycomponent.client.MyComponentWidget.java
/**
* A Trivial widget, to explore compiling WidgetSets
*
* From https://vaadin.com/wiki/-/wiki/Main/Creating%20a%20simple%20component
*/
From source file com.qualogy.qafe.gwt.client.component.QLabel.java
public class QLabel extends Label implements HasEnabled { public static final String DISABLED_STYLE_NAME = "qafe_item_disabled"; public QLabel(String name) { super(name, false);
From source file com.qualogy.qafe.mgwt.client.ui.component.QLabel.java
public class QLabel extends Label implements HasData, HasEnabled, HasTapHandlers, HasLongTapHandlers, HasTouchHandlers, HasDisplayname { private boolean enabled; private GestureUtility gestureUtility; private String dataName;