Package ca.forklabs.javaxpcom.select.filter

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


    * @param   name   the name of the attribute.
    * @param   regex   the regular expression of the value of the attribute.
    * @return   this selector.
    */
   public static Selector.Filter attribute(String name, String regex) {
      Selector.Filter filter = new AttributeValueFilter(name, regex);
      return filter;
      }
View Full Code Here


    * @param   regex   the regular expression of the value of the attribute.
    * @return   this selector.
    */
   public Selector attribute(String name, String regex) {
// TODO : add methods for attribute selection: http://api.jquery.com/category/selectors/
      Filter filter = new AttributeValueFilter(name, regex);
      this.addFilter(filter);
      return this;
      }
View Full Code Here

TOP

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

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.