Example usage for com.google.gwt.user.client.ui SuggestionMenuItem getSuggestion

List of usage examples for com.google.gwt.user.client.ui SuggestionMenuItem getSuggestion

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui SuggestionMenuItem getSuggestion.

Prototype

public Suggestion getSuggestion() 

Source Link

Usage

From source file:org.opennms.features.topology.app.internal.gwt.client.ui.CustomDisplay.java

License:Open Source License

@Override
protected SuggestOracle.Suggestion getCurrentSelection() {
    if (!isSuggestionListShowing()) {
        return null;
    }//from  w w  w. j a  va 2 s  . co m
    SuggestionMenuItem item = m_suggestionMenu.getSelectedItem();
    return item == null ? null : item.getSuggestion();
}