com.teamdev.jxbrowser
Interface WebBrowserHistory


public interface WebBrowserHistory

Interface to the browser navigation history.


Nested Class Summary
static class WebBrowserHistory.Entry
          A history entry.
 
Method Summary
 void clear()
          Clears the navigation history.
 boolean getCanGoBack()
           
 boolean getCanGoForward()
           
 int getCurrentPosition()
          Returns the index of the currently opened location in the history.
 java.util.List<WebBrowserHistory.Entry> getEntries()
          Returns the array of the visited locations.
 

Method Detail

clear

void clear()
Clears the navigation history. Doing this will disable back and forward actions for this browser.


getEntries

java.util.List<WebBrowserHistory.Entry> getEntries()
Returns the array of the visited locations.


getCurrentPosition

int getCurrentPosition()
Returns the index of the currently opened location in the history.


getCanGoBack

boolean getCanGoBack()

getCanGoForward

boolean getCanGoForward()