Example usage for com.google.gwt.editor.client LeafValueEditor interface-usage

List of usage examples for com.google.gwt.editor.client LeafValueEditor interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.editor.client LeafValueEditor interface-usage.

Usage

From source file com.google.gerrit.client.admin.ValueEditor.java

public class ValueEditor<T> extends Composite
        implements HasEditorErrors<T>, IsEditor<ValueBoxEditor<T>>, LeafValueEditor<T>, Focusable {
    interface Binder extends UiBinder<Widget, ValueEditor<?>> {
    }

    static final Binder uiBinder = GWT.create(Binder.class);

From source file com.google.gwt.editor.client.testing.FakeLeafValueEditor.java

/**
 * A no-op Editor.
 * 
 * @param <T> the type not being edited
 */
public class FakeLeafValueEditor<T> implements LeafValueEditor<T> {

From source file com.googlecode.mgwt.ui.client.widget.input.slider.Slider.java

/**
 * The mgwt pointer widget.
 *
 * The pointer element is moved along the bar element to represent the value of the Slider
 */
public class Slider extends Widget implements HasValue<Integer>, LeafValueEditor<Integer> {

From source file com.googlecode.mgwt.ui.client.widget.MSlider.java

/**
 * <h1>The mgwt slider widget</h1>
 * 
 * 
 * <h2>Styling</h2>
 * 

From source file com.sencha.gxt.widget.core.client.cell.CellComponent.java

/**
 * A {@link Component} that wraps a {@link Cell}.
 * 
 * <p />
 * It is important to note that a single cell instance should not be used in a
 * single <code>CellComponent</code> instance.

From source file com.sencha.gxt.widget.core.client.form.ConverterEditorAdapter.java

/**
 * Adapter to allow an Editor to have a subeditor that acts on a {@link Converter}-modified instance of the data.
 * <p>
 * As an example, consider an {@code Order} object that has a property {@code vendorId}, which holds
 * the {@code id} property of a {@code Vendor} object. But to draw the field, the full
 * {@code Vendor} must be used in a {@code ComboBox&lt;Vendor>}:

From source file com.sencha.gxt.widget.core.client.form.Field.java

/**
 * Base class for all cell based fields. Adapts these fields for use as widgets, adding validation features, and the
 * ability to interact with the GWT Editor framework.
 * <p>
 * The Field instance implements several Editor interfaces to participate in the full editing lifecycle.
 * <ul>

From source file com.sencha.gxt.widget.core.client.form.IsField.java

public interface IsField<T> extends IsWidget, LeafValueEditor<T>, HasBlurHandlers, HasValueChangeHandlers<T> {

    /**
     * Clears the value from the field.
     *
     * @see #clearInvalid() to remove validation messages

From source file com.tasktop.c2c.server.tasks.client.widgets.admin.customfields.CustomFieldValuesEditor.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class CustomFieldValuesEditor extends Composite implements LeafValueEditor<List<CustomFieldValue>> {

From source file com.tasktop.c2c.server.tasks.client.widgets.CustomFieldEditor.java

public class CustomFieldEditor implements LeafValueEditor<CustomField> {

    private FieldDescriptor fieldDescriptor;
    private Widget widget;

    public CustomFieldEditor() {