Example usage for com.google.gwt.user.client.ui SuggestBox subclass-usage

List of usage examples for com.google.gwt.user.client.ui SuggestBox subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui SuggestBox subclass-usage.

Usage

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.ephesoft.dcma.gwt.core.client.ui.SuggestionBox.java

@SuppressWarnings("deprecation")
public class SuggestionBox extends SuggestBox implements FocusListener, KeyboardListener {

    public SuggestionBox(SuggestOracle oracle) {
        super(oracle);
        addKeyboardListener(this);

From source file com.ephesoft.gxt.core.client.ui.widget.SuggestionBox.java

/**
 * A {@link SuggestBox} is a text box or text area which displays a pre-configured set of selections that match the user's input.
 * 
 * Each {@link SuggestBox} is associated with a single {@link SuggestOracle}. The {@link SuggestOracle} is used to provide a set of
 * selections given a specific query string.
 * 

From source file com.qualogy.qafe.gwt.client.component.QSuggestBox.java

public class QSuggestBox extends SuggestBox implements HasDataModel, HasEditable {

    private QSuggestOracle qoracle = null;
    private QMultiWordSuggestion currentSuggestion = null;
    private int suggestCharactersLength = 1;

From source file it.unibo.cs.v2.client.UsersSuggestBox.java

public class UsersSuggestBox extends SuggestBox implements ValueChangeHandler<String> {
    private final MultiWordSuggestOracle oracle;
    private LinkedList<String> usersList;
    private final Timer updateListTimer = new Timer() {

        @Override

From source file org.activityinfo.ui.client.widget.SuggestBox.java

/**
 * @author yuriyz on 3/14/14.
 */
public class SuggestBox extends com.google.gwt.user.client.ui.SuggestBox {

    public SuggestBox(SuggestOracle oracle) {

From source file org.aksw.TripleCheckMate.client.widgets.SparqlSuggestBox.java

public class SparqlSuggestBox extends SuggestBox {
    public SparqlSuggestBox() {
        super(new SparqlSuggestOracle());
    }

}

From source file org.cruxframework.crux.widgets.client.filter.Filter.java

/**
 * TODO - Gesse - Comment this
 * @author Gesse S. F. Dafe
 */
@SuppressWarnings("unchecked")
public class Filter extends SuggestBox {

From source file org.datacleaner.monitor.shared.widgets.StringParameterizedMetricTextBox.java

/**
 * A textbox with suggestions which the user uses to express string metric
 * parameters.
 */
public class StringParameterizedMetricTextBox extends SuggestBox {

From source file org.ednovo.gooru.client.uc.AppCenturyTagSuggestBox.java

/**
 * @author Search Team
 *
 */
public abstract class AppCenturyTagSuggestBox extends SuggestBox
        implements KeyUpHandler, KeyDownHandler, HasClickHandlers {