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 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) {

From source file gwt.material.design.client.base.AbstractValueWidget.java

public abstract class AbstractValueWidget<V> extends MaterialWidget implements HasValue<V>, LeafValueEditor<V>,
        HasEditorErrors<V>, HasErrorHandler, HasError, HasValidators<V> {

    private boolean allowBlank = true;
    private BlankValidator<V> blankValidator;
    private HandlerRegistration blurHandler, attachHandler;

From source file org.appverse.web.framework.frontend.gwt.widgets.search.suggest.impl.gxt.SuggestWidgetImpl.java

@Singleton
public class SuggestWidgetImpl<M extends GWTAbstractPresentationBean> extends Composite
        implements IsWidget, LeafValueEditor<M> {

    /*
     * interface Bundle extends ClientBundle {

From source file org.cee.webreader.client.list.SelectionListEditor.java

/**
 * Editor adapter for the {@link SelectionChangedHandler}
 */
public class SelectionListEditor<K> implements LeafValueEditor<List<K>> {

    private List<K> selections = new ArrayList<K>();

From source file org.gwtbootstrap3.client.ui.base.RadioGroupBase.java

/**
 * Contains a group of radio input elements.
 *
 * @param <T> the return value type of the radio group.
 * @author Steven Jardine
 */

From source file org.gwtbootstrap3.extras.datepicker.client.ui.base.DatePickerBase.java

/**
 * @author Joshua Godi
 * @author Steven Jardine
 */
public class DatePickerBase extends Widget
        implements HasEnabled, HasId, HasResponsiveness, HasVisibility, HasPlaceholder, HasAutoClose,

From source file org.gwtbootstrap3.extras.datetimepicker.client.ui.base.DateTimePickerBase.java

/**
 * @author Joshua Godi
 * @author Steven Jardine
 */
public class DateTimePickerBase extends Widget implements HasEnabled, HasId, HasResponsiveness, HasVisibility,
        HasPlaceholder, HasAutoClose, HasDaysOfWeekDisabled, HasEndDate, HasForceParse, HasFormat,

From source file org.jboss.pressgang.ccms.ui.client.local.ui.editor.contentspec.RESTCSTranslationDetailV1Editor.java

public final class RESTCSTranslationDetailV1Editor extends FlexTable
        implements LeafValueEditor<RESTCSTranslationDetailV1> {
    private final LinkedList<RESTLocaleV1> locales;
    private final Map<Integer, RESTLocaleV1> localesMap = new HashMap<Integer, RESTLocaleV1>();

    private RESTCSTranslationDetailV1 value;

From source file org.livespark.formmodeler.renderer.client.rendering.renderers.bs3.base.RadioGroupBase.java

/**
 * Contains a group of radio input elements.
 *
 * @param <T> the return value type of the radio group.
 * @author Steven Jardine
 */

From source file ru.fly.client.ui.field.Field.java

/**
 * User: fil
 * Date: 05.08.13
 * Time: 21:05
 */
public class Field<T> extends Component implements LeafValueEditor<T>, HasEditorErrors<T> {