Package org.objectstyle.wolips.core.resources.pattern

Examples of org.objectstyle.wolips.core.resources.pattern.IPattern.matches()


  }

  public boolean matches(String string) {
    for (int i = 0; i < this.patternList.size(); i++) {
      IPattern pattern = this.patternList.get(i);
      if (pattern.matches(string)) {
        return true;
      }
    }
    return false;
  }
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.