/**@class android.webkit.WebViewFragment
@extends android.app.Fragment

 A fragment that displays a WebView.
 <p>
 The WebView is automically paused or resumed when the Fragment is paused or resumed.

 @deprecated Manually call {@link android.webkit.WebView#onPause()} and {@link android.webkit.WebView#onResume()}
*/
var WebViewFragment = {

/**Called to instantiate the view. Creates and returns the WebView.
*/
onCreateView : function(  ) {},

/**Called when the fragment is visible to the user and actively running. Resumes the WebView.
*/
onPause : function(  ) {},

/**Called when the fragment is no longer resumed. Pauses the WebView.
*/
onResume : function(  ) {},

/**Called when the WebView has been detached from the fragment.
 The WebView is no longer available after this time.
*/
onDestroyView : function(  ) {},

/**Called when the fragment is no longer in use. Destroys the internal state of the WebView.
*/
onDestroy : function(  ) {},

/**Gets the WebView.
*/
getWebView : function(  ) {},


};