Package ca.forklabs.javaxpcom.select.filter

Examples of ca.forklabs.javaxpcom.select.filter.ElementFilter


    * Selects all node of the given tag name.
    * @param   name   the name of the element.
    * @return   this selector.
    */
   public static Selector.Filter element(String name) {
      Selector.Filter filter = new ElementFilter(name);
      return filter;
      }
View Full Code Here


    * @param   name   the name of the element.
    * @return   this selector.
    */
   public Selector element(String name) {
// TODO : add methods matching tags: http://api.jquery.com/category/selectors/
      Filter filter = new ElementFilter(name);
      this.addFilter(filter);
      return this;
      }
View Full Code Here

TOP

Related Classes of ca.forklabs.javaxpcom.select.filter.ElementFilter

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.