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

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

Introduction

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

Usage

From source file com.github.apetrelli.gwtintegration.editor.client.ParseableValueEditor.java

/**
 * Adapts the {@link ValueBoxBase} interface to the Editor framework. This
 * adapter uses {@link ValueBoxBase#getValueOrThrow()} to report parse errors to
 * the Editor framework.
 *
 * @param <T>

From source file com.github.apetrelli.gwtintegration.editor.client.widget.LeafValueEditorDecorator.java

/**
 * A simple decorator to display leaf widgets with an error message.
 * <p>
 * <h3>Use in UiBinder Templates</h3>
 * <p>
 * The decorator may have exactly one ValueBoxBase added though an

From source file com.googlecode.mgwt.ui.client.editor.MValueBoxEditor.java

/**
 * Adapts the {@link ValueBoxBase} interface to the Editor framework. This
 * adapter uses {@link ValueBoxBase#getValueOrThrow()} to report parse errors to
 * the Editor framework.
 *
 * @param <T>

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

/**
 * Wraps a {@link Widget} so that it can be used like a {@link Field}.
 * 
 * @param <T> the field's data type
 */
public abstract class AdapterField<T> extends SimpleContainer implements IsField<T>, HasInvalidHandlers,

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 fr.putnami.pwt.core.editor.client.helper.TakesValueEditorWrapper.java

public class TakesValueEditorWrapper<T> implements LeafValueEditor<T>, HasEditorDelegate<T> {

    private final EditorValue<T> editor;
    private EditorDelegate<T> delegate;

    public TakesValueEditorWrapper(EditorValue<T> editor) {