WHITE PAPERS  |  PRICING  |  DOWNLOADS

 

username

password

 

 

 

 

 

 

 

 

 

 

  Desktop Edition Details  

 

  > Features  

  > Key Benefits  

  > Screenshots  

  > Standards Supported  

  > Pricing  

  > Download Now

 

 

  Developer Resources  

 

  > API Documentation  

  > Developers Guide  

  > Code Examples  

  > Updated Builds  

  > Technical Articles  

 

 

 

 

 

Jump to:

General WebRenderer Functions

  WebRenderer example code base.

 

Advanced WebRenderer functions

 

Application test examples

 

Deploying WebRenderer

WebRenderer DOM

  

  

 

WebRenderer History object

 

 

 

Tracking the WebRenderers page visit history

WebRenderer has a History object that automatically tracks document navigation. The History object can be enumerated to find the complete browsing session history.

The following code will output all pages visited upon each page load completion:


IBrowserCanvas browser = BrowserFactory.spawnInternetExplorer();


                browser.addNetworkListener(new NetworkAdapter() {
                        public void onDocumentComplete(NetworkEvent e) {
                                History history = browser.getHistory();
                                System.out.println("History List Length: " + history.length());
                                System.out.println("+++ History Block Start +++");
                                for(int i = 0; i < history.length(); i++) {
                                        System.out.println(history.getPageAt(i).getURL());
                                }
                                System.out.println("+++ History Block End +++");
                        }
                });


 

  top

 

 

 Sun, Sun Microsystems, and the Sun Logo are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries 

Privacy Policy  |   Disclaimer