Example usage for com.google.gwt.user.client.ui SuggestOracle.Suggestion interface-usage

List of usage examples for com.google.gwt.user.client.ui SuggestOracle.Suggestion interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui SuggestOracle.Suggestion interface-usage.

Usage

From source file com.google.gerrit.client.projects.ProjectInfo.java

public class ProjectInfo extends JavaScriptObject implements SuggestOracle.Suggestion {
    public final Project.NameKey name_key() {
        return new Project.NameKey(name());
    }

    public final native String name() /*-{ return this.name; }-*/;

From source file gwt.material.demo.errai.client.dto.UserSuggestion.java

/**
 * Created by Mark Kevin on 4/12/2016.
 */
public class UserSuggestion implements SuggestOracle.Suggestion {

    private User user;

From source file gwt.material.design.addins.client.dto.UserSuggestion.java

/**
 * Created by Mark Kevin on 4/12/2016.
 */
public class UserSuggestion implements SuggestOracle.Suggestion {

    private User user;

From source file gwt.material.design.addins.client.ui.base.dto.UserSuggestion.java

/**
 * Created by Mark Kevin on 4/12/2016.
 */
public class UserSuggestion implements SuggestOracle.Suggestion {

    private User user;

From source file gwt.material.design.demo.client.application.addins.autocomplete.base.UserSuggestion.java

/**
 * Created by Mark Kevin on 4/12/2016.
 */
public class UserSuggestion implements SuggestOracle.Suggestion {

    private User user;

From source file org.cloudcoder.app.client.view.UsernameSuggestion.java

/**
 * Username suggestion (for using a SuggestBox to suggest usernames.)
 * 
 * @author David Hovemeyer
 */
public class UsernameSuggestion implements SuggestOracle.Suggestion {

From source file org.fourthline.konto.client.ledger.entry.SplitSuggestion.java

/**
 * @author Christian Bauer
 */
public class SplitSuggestion implements SuggestOracle.Suggestion {

    String description;

From source file org.opennms.features.topology.app.internal.gwt.client.SearchSuggestion.java

public class SearchSuggestion implements Serializable, SuggestOracle.Suggestion {

    private static final long serialVersionUID = 1876970713330053849L;

    private String m_id;
    private String m_namespace;

From source file org.seamless.gwt.component.client.StringSuggestion.java

/**
 * @author Christian Bauer
 */
public class StringSuggestion implements SuggestOracle.Suggestion {

    public static SuggestOracle.Response createResponse(List<String> strings) {