/**@class android.webkit.WebView.FindListener
 Interface to listen for find results.
*/
var FindListener = {

/**Notifies the listener about progress made by a find operation.
@param {Number} activeMatchOrdinal the zero-based ordinal of the currently selected match
@param {Number} numberOfMatches how many matches have been found
@param {Boolean} isDoneCounting whether the find operation has actually completed. The listener
                       may be notified multiple times while the
                       operation is underway, and the numberOfMatches
                       value should not be considered final unless
                       isDoneCounting is true.
*/
onFindResultReceived : function(  ) {},


};