List of usage examples for com.google.gwt.user.client.ui SuggestionMenuItem getSuggestion
public Suggestion getSuggestion()
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(); }