Examples of nsIDOMDocument


Examples of org.mozilla.interfaces.nsIDOMDocument

         @Override
         public void run() {
            Browser browser = Crawler.this.getBrowser();
            nsIWebBrowser web_browser = (nsIWebBrowser) browser.getWebBrowser();
            nsIDOMWindow window = web_browser.getContentDOMWindow();
            nsIDOMDocument document = window.getDocument();
            outs[0] = document;
            }
         });

      nsIDOMDocument document = outs[0];
      return document;
      }
View Full Code Here

Examples of org.mozilla.interfaces.nsIDOMDocument

    * @param   id   the id of the element.
    * @return   the element or {@code null} if the id does not map to an
    *           element.
    */
   public nsIDOMElement getElementById(String id) {
      nsIDOMDocument document = this.getDocument();
      nsIDOMElement element = document.getElementById(id);
      return element;
      }
View Full Code Here

Examples of org.mozilla.interfaces.nsIDOMDocument

        if(iWebBrowser == null) {
          JOptionPane.showMessageDialog(webBrowser, "The XPCOM nsIWebBrowser interface could not be obtained.\nPlease check your XULRunner configuration.", "XPCOM interface", JOptionPane.ERROR_MESSAGE);
          return;
        }
        nsIDOMWindow window = iWebBrowser.getContentDOMWindow();
        nsIDOMDocument document = window.getDocument();
        nsIDOMNSHTMLDocument nsDocument = (nsIDOMNSHTMLDocument)document.queryInterface(nsIDOMNSHTMLDocument.NS_IDOMNSHTMLDOCUMENT_IID);
        nsDocument.setDesignMode(e.getStateChange() == ItemEvent.SELECTED? "on": "off");
      }
    });
    buttonPanel.add(designModeCheckBox);
    contentPane.add(buttonPanel, BorderLayout.SOUTH);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.