/**@class android.webkit.WebBackForwardList implements java.lang.Cloneable implements java.io.Serializable @extends java.lang.Object This class contains the back/forward list for a WebView. WebView.copyBackForwardList() will return a copy of this class used to inspect the entries in the list. */ var WebBackForwardList = { /**Return the current history item. This method returns null if the list is empty. @return {Object {android.webkit.WebHistoryItem}} The current history item. */ getCurrentItem : function( ) {}, /**Get the index of the current history item. This index can be used to directly index into the array list. @return {Number} The current index from 0...n or -1 if the list is empty. */ getCurrentIndex : function( ) {}, /**Get the history item at the given index. The index range is from 0...n where 0 is the first item and n is the last item. @param {Number} index The index to retrieve. */ getItemAtIndex : function( ) {}, /**Get the total size of the back/forward list. @return {Number} The size of the list. */ getSize : function( ) {}, };