/**@class android.widget.SearchView.OnSuggestionListener
 Callback interface for selection events on suggestions. These callbacks
 are only relevant when a SearchableInfo has been specified by {@link #setSearchableInfo}.
*/
var OnSuggestionListener = {

/**Called when a suggestion was selected by navigating to it.
@param {Number} position the absolute position in the list of suggestions.
@return {Boolean} true if the listener handles the event and wants to override the default
 behavior of possibly rewriting the query based on the selected item, false otherwise.
*/
onSuggestionSelect : function(  ) {},

/**Called when a suggestion was clicked.
@param {Number} position the absolute position of the clicked item in the list of suggestions.
@return {Boolean} true if the listener handles the event and wants to override the default
 behavior of launching any intent or submitting a search query specified on that item.
 Return false otherwise.
*/
onSuggestionClick : function(  ) {},


};