List of usage examples for com.google.gwt.editor.client IsEditor interface-usage
From source file com.arcbees.chosen.client.gwt.ChosenValueListBox.java
public class ChosenValueListBox<T> extends BaseChosenValueListBox<T> implements IsEditor<TakesValueEditor<T>>, HasValue<T> { private final Renderer<T> renderer; private TakesValueEditor<T> editor; private T value;
From source file com.arcbees.chosen.client.gwt.MultipleChosenValueListBox.java
public class MultipleChosenValueListBox<T> extends BaseChosenValueListBox<T> implements HasValue<List<T>>, IsEditor<TakesValueEditor<List<T>>> { private final Renderer<T> renderer; private final Set<T> selectedValues; private TakesValueEditor<List<T>> editor;
From source file com.bearsoft.gwt.ui.widgets.DateTimeBox.java
/** * * @author mg */ public class DateTimeBox extends Composite implements RequiresResize, HasValue<Date>, HasText, HasValueChangeHandlers<Date>,
From source file com.bearsoft.gwt.ui.widgets.SpinnerBox.java
/** * * @author mg * @param <T> */ public abstract class SpinnerBox<T> extends Composite
From source file com.dianaui.universal.core.client.ui.Badge.java
/**
* Badge for highlighting new or unread items.
* <h3>UiBinder example</h3>
* <pre>
* {@code
* <b:Badge>42</b:Badge>
From source file com.dianaui.universal.core.client.ui.base.AbstractTextWidget.java
/**
* Base class for {@link Widget} that just contains text.
*
* @author Sven Jacobs
* @author Joshua Godi
* @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
From source file com.dianaui.universal.core.client.ui.CheckBox.java
/**
* A standard check box widget.
* <p/>
* This class also serves as a base class for {@link Radio}.
* <p/>
* <p>
From source file com.eas.widgets.boxes.DateTimeBox.java
/** * * @author mg */ public class DateTimeBox extends Composite implements RequiresResize, HasValue<Date>, HasText, HasValueChangeHandlers<Date>, IsEditor<LeafValueEditor<Date>>, Focusable, HasAllKeyHandlers,
From source file com.eas.widgets.boxes.SpinnerBox.java
/** * * @author mg * @param <T> */ public abstract class SpinnerBox<T> extends Composite
From source file com.emitrom.touch4j.client.ui.CheckBox.java
/**
* The checkbox field is an enhanced version of the native browser checkbox and
* is great for enabling your user to choose one or more items from a set (for
* example choosing toppings for a pizza order). It works like any other field
* and is usually found in the context of a form.
*