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

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

Introduction

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

Usage

From source file de.swm.commons.mobile.client.widgets.date.DateTextBoxReadOnly.java

/**
 * Defines a read only Date box.
 * <p/>
 * <p/>
 */
public class DateTextBoxReadOnly extends PanelBase

From source file de.swm.commons.mobile.client.widgets.DropDownList.java

/**
 * Listbox that supports data binding and internationalization
 *
 * @param <T> the list box type
 */
public class DropDownList<T> extends PanelBase

From source file de.swm.commons.mobile.client.widgets.FlipSwitch.java

/**
 * Flip-Switch (boolean widget) with data binding.
 * 
 */
public class FlipSwitch extends SWMMobileWidgetBase
        implements DragEventsHandler, ClickHandler, HasValueChangeHandlers<Boolean>,

From source file de.swm.commons.mobile.client.widgets.GenericRadioButtonGroup.java

/**
 * Container for a group of {@link de.swm.commons.mobile.client.widgets.RadioButton}s.
 * Supports i18n-Enums as source for the radio button options.
 */
public class GenericRadioButtonGroup<T> extends CheckBoxGroup
        implements HasConstrainedValue<T>, IsEditor<TakesValueEditor<T>>, HasEnabled {

From source file de.swm.commons.mobile.client.widgets.Slider.java

/**
 * Integer value slider with data binding support.
 *  
 */
public class Slider extends SWMMobileWidgetBase implements DragEventsHandler, HasValueChangeHandlers<Integer>,
        IsEditor<LeafValueEditor<Integer>>, HasValue<Integer>, HasFocusHandlers, HasBlurHandlers {

From source file fr.putnami.pwt.core.editor.client.EditorValue.java

public interface EditorValue<T> extends Editor, IsEditor<LeafValueEditor<T>> {

    T getValue();

    void edit(T value);

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

/**
 * @author Ben Dol
 */
public abstract class AbstractTextWidget extends Widget
        implements HasId, HasHTML, HasInlineStyle, IsEditor<LeafValueEditor<String>> {

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

/**
 * A standard check box widget.
 *
 * This class also serves as a base class for
 * {@link RadioButton}.
 *

From source file gwt.material.design.client.ui.MaterialValueBox.java

/**
* Material Text Box is an input field that accepts any text based string from user.
* <h3>UiBinder Usage:</h3>
* <pre>
*{@code <m:MaterialTextBox placeholder="First Name" />}
* </pre>

From source file org.cruxframework.crux.widgets.client.datebox.GWTOverriddenDateBox.java

/**
 * CruxDateBox
 * This is a GWT Class and had to be fully overridden because method visibility that
 * didn't allowed me to override the method itself.   
 * @author Samuel Almeida Cardoso (samuel@cruxframework.org)
 */