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.dianaui.universal.core.client.ui.base.AbstractSuggestBox.java

/**
 * Inspired by original GWT {@link com.google.gwt.user.client.ui.SuggestBox}
 *
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public abstract class AbstractSuggestBox<T> extends Composite

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

/**
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public abstract class ValueDropDownButtonBase<T> extends DropDownButton implements LeafValueEditor<T>, HasValue<T> {

    private T value;

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

/**
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class DateTimePicker extends ModalWithBackdrop implements LeafValueEditor<Date>, HasValue<Date> {

    private static String TABLE_START = "<table class=\"table-condensed\">";

From source file com.dianaui.universal.core.client.ui.gwt.RichTextArea.java

/**
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class RichTextArea extends com.google.gwt.user.client.ui.RichTextArea implements HasId,
        HasValueChangeHandlers<String>, HasValue<String>, TakesValue<String>, LeafValueEditor<String> {

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

/**
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class TimePicker extends ModalWithBackdrop implements LeafValueEditor<Date>, HasValue<Date> {

    private HTMLPanel container;

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

/**
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class WYSIWYGEditor extends Div implements HasValueChangeHandlers<String>, HasValue<String>,
        TakesValue<String>, LeafValueEditor<String>, HasSize<ButtonGroupSize> {

From source file com.gafactory.core.client.ui.suggestions.SuggestedEditor.java

public class SuggestedEditor<T> extends Composite implements LeafValueEditor<T>, IsEditor<LeafValueEditor<T>>,
        HasConstrainedValue<T>, HasEnabled, HasPlaceholder, HasSelectionHandlers<T> {

    /*===========================================[ STATIC VARIABLES ]=============*/

    private final SuggestOracle oracle;

From source file com.gafactory.core.client.ui.suggestions.SuggestedListEditor.java

public class SuggestedListEditor<T, ID extends Serializable> extends Composite
        implements LeafValueEditor<List<T>>, IsEditor<LeafValueEditor<List<T>>>, HasValue<List<T>>, HasEnabled {

    /*===========================================[ STATIC VARIABLES ]=============*/

    BagePanel<T> bagePanel;

From source file com.gafactory.core.client.ui.widgets.ValueIdListBox.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 16.07.13
 */
public class ValueIdListBox<T, ID> extends Composite implements LeafValueEditor<ID>, HasValue<ID>,
        SelectionChangeEvent.HasSelectionChangedHandlers, /*HasShowEditorErrors<ID>,*/ HasEnabled {

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

public class GroupReferenceBox extends Composite implements LeafValueEditor<GroupReference>,
        HasSelectionHandlers<GroupReference>, HasCloseHandlers<GroupReferenceBox>, Focusable {
    private final DefaultSuggestionDisplay suggestions;
    private final NpTextBox textBox;
    private final AccountGroupSuggestOracle oracle;
    private final SuggestBox suggestBox;