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

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

Introduction

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

Usage

From source file com.dianaui.universal.core.client.ui.base.ValueBoxBase.java

public class ValueBoxBase<T> extends com.google.gwt.user.client.ui.ValueBoxBase<T> implements HasId,
        HasResponsiveness, HasPlaceholder, HasAutoComplete, HasSize<InputSize>, HasEditorErrors<T> {

    /**
     * Add support for HasEditorErrors implementation.
     */

From source file com.dianaui.universal.core.client.ui.SuggestBox.java

/**
 * Wrapper for a {@link com.google.gwt.user.client.ui.SuggestBox}.<br/>
 * <br/>
 * The default style is inherited from the {@link Styles#DROPDOWN_MENU}. Styling of the suggestions items need
 * a bit of css in order to be pleasing to the eye.
 * <p/>

From source file com.gafactory.core.client.ui.editors.EditorView.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 25.04.13
 */
public interface EditorView<T> extends View, HasEditorErrors<T>, CustomizedWithRoles {

From source file com.gafactory.core.client.ui.editors.PopupEditorView.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 25.04.13
 */
public interface PopupEditorView<T> extends PopupView, HasEditorErrors<T> {

From source file com.gafactory.core.client.ui.validation.HasShowEditorErrors.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 18.04.13
 */
public interface HasShowEditorErrors<T> extends HasEditorErrors<T>, IsWidget {
    /**

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.github.gwtbootstrap.client.ui.base.ValueBoxBase.java

/**
 * A ValueBoxBase extending for Bootstarp style.
 * 
 * <pre>
 * It is GWT's {@link com.google.gwt.user.client.ui.ValueBoxBase} extending for Bootstrap style.
 * </pre>

From source file com.github.gwtbootstrap.client.ui.FileUpload.java

/**
 * A FileInput for Bootstrap form.
 * @since 2.0.4.0
 * @author ohashi keisuke
 *
 */

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.sample.expenses.client.place.ProxyEditView.java

/**
 * Implemented by views that edit {@link EntityProxy}s.
 * 
 * @param <P> the type of the proxy
 * @param <V> the type of this ProxyEditView, required to allow
 *          {@link #createEditorDriver()} to be correctly typed