Package net.sf.eclipsecs.core.projectconfig

Examples of net.sf.eclipsecs.core.projectconfig.FileSet


    }

    public void updateCheckConfigWithIncludeExcludePatterns(
            final ProjectConfigurationWorkingCopy pcWorkingCopy, final ICheckConfiguration checkCfg)
            throws CheckstylePluginException, CoreException {
    final FileSet fs = new FileSet("java-sources-" + getExecutionId(), checkCfg);
        fs.setEnabled(true);
        // add fileset includes/excludes
        fs.setFileMatchPatterns(this.getIncludesExcludesFileMatchPatterns());
        // now add the config
        pcWorkingCopy.getFileSets().add(fs);
    }
View Full Code Here

TOP

Related Classes of net.sf.eclipsecs.core.projectconfig.FileSet

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.