Package ca.forklabs.javaxpcom.select

Examples of ca.forklabs.javaxpcom.select.Selector


    * Creates a selector on the document and its children.
    * @return   the selector.
    */
   public Selector selector() {
      nsIDOMNode document = this.getDocument();
      Selector selector = this.selector(document);
      return selector;
      }
View Full Code Here


    * Creates a selector on the specified node and its children.
    * @param   root   the root node.
    * @return   the selector.
    */
   public Selector selector(nsIDOMNode root) {
      Selector selector = new Selector(root);
      return selector;
      }
View Full Code Here

    * Creates a selector on the document and its children.
    * @return   the selector.
    */
   public Selector selector() {
      nsIDOMNode document = this.getDocument();
      Selector selector = this.selector(document);
      return selector;
      }
View Full Code Here

   /**
    * Creates a selector on the specified node and its children.
    * @return   the selector.
    */
   public Selector selector(nsIDOMNode root) {
      Selector selector = new Selector(root);
      return selector;
      }
View Full Code Here

TOP

Related Classes of ca.forklabs.javaxpcom.select.Selector

Copyright © 2018 www.massapicom. 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.