Package classycle.util

Examples of classycle.util.AndStringPattern


    StringPattern[][] lists = getLists(tokens, lineNumber, EXCLUDING, 2);
    if (lists[0].length == 0 && lists[1].length == 0)
    {
      throwException("Missing terms in set definition.", lineNumber, 2);
    }
    AndStringPattern definition = new AndStringPattern();
    if (lists[0].length > 0)
    {
      definition.appendPattern(createOrSequence(lists[0]));
    }
    if (lists[1].length > 0)
    {
      definition.appendPattern(new NotStringPattern(createOrSequence(lists[1])));
    }
    _setDefinitions.put(setName, definition);
  }
View Full Code Here


    return (String[]) fileNames.toArray(classFiles);
  }

  protected StringPattern getPattern()
  {
    AndStringPattern pattern = new AndStringPattern();
    pattern.appendPattern(_includingClasses);
    pattern.appendPattern(_excludingClasses);
    return pattern;
  }
View Full Code Here

TOP

Related Classes of classycle.util.AndStringPattern

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.