Package net.sourceforge.marathon.util

Examples of net.sourceforge.marathon.util.FilePatternMatcher


    public static void setHideFilePattern(String hideFilePattern) {
        if (hideFilePattern == null)
            TestCreator.hideFilePattern = "\\..* .*\\.class \\Q__init__.py\\E \\QExploratoryTests\\E";
        else
            TestCreator.hideFilePattern = hideFilePattern;
        hiddenFPM = new FilePatternMatcher(TestCreator.hideFilePattern);
    }
View Full Code Here


    public static void setHideFilePattern(String hideFilePattern) {
        if (hideFilePattern == null)
            Navigator.hideFilePattern = "\\..* .*\\.class \\Q__init__.py\\E";
        else
            Navigator.hideFilePattern = hideFilePattern;
        hiddenFileMatcher = new FilePatternMatcher(hideFilePattern);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.util.FilePatternMatcher

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.