/**@class android.webkit.WebView.HitTestResult @extends java.lang.Object */ var HitTestResult = { /** Default HitTestResult, where the target is unknown. */ UNKNOWN_TYPE : "0", /** @deprecated This type is no longer used. */ ANCHOR_TYPE : "1", /** HitTestResult for hitting a phone number. */ PHONE_TYPE : "2", /** HitTestResult for hitting a map address. */ GEO_TYPE : "3", /** HitTestResult for hitting an email address. */ EMAIL_TYPE : "4", /** HitTestResult for hitting an HTML::img tag. */ IMAGE_TYPE : "5", /** @deprecated This type is no longer used. */ IMAGE_ANCHOR_TYPE : "6", /** HitTestResult for hitting a HTML::a tag with src=http. */ SRC_ANCHOR_TYPE : "7", /** HitTestResult for hitting a HTML::a tag with src=http + HTML::img. */ SRC_IMAGE_ANCHOR_TYPE : "8", /** HitTestResult for hitting an edit text area. */ EDIT_TEXT_TYPE : "9", /** @hide Only for use by WebViewProvider implementations */ setType : function( ) {}, /** @hide Only for use by WebViewProvider implementations */ setExtra : function( ) {}, /**Gets the type of the hit test result. See the XXX_TYPE constants defined in this class. @return {Number} the type of the hit test result */ getType : function( ) {}, /**Gets additional type-dependant information about the result. See {@link android.webkit.WebView#getHitTestResult()} for details. May either be null or contain extra information about this result. @return {String} additional type-dependant information about the result */ getExtra : function( ) {}, };