Package org.watermint.sourcecolon.org.opensolaris.opengrok.index

Examples of org.watermint.sourcecolon.org.opensolaris.opengrok.index.IgnoredNames


        setIndexWordLimit(Integer.MAX_VALUE);
        setVerbose(false);
        setPrintProgress(false);
        setGenerateHtml(true);
        setQuickContextScan(false);
        setIgnoredNames(new IgnoredNames());
        setIncludedNames(new Filter());
        setUsingLuceneLocking(false);
        setCompressXref(true);
        setIndexVersionedFilesOnly(false);
        setHitsPerPage(25);
View Full Code Here


        assertNotNull(files);
        if (directories) {
            files.add(root);
        }

        IgnoredNames ignore = RuntimeEnvironment.getInstance().getIgnoredNames();

        for (File f : root.listFiles()) {
            if (!ignore.ignore(f)) {
                if (f.isDirectory()) {
                    getAllFiles(f, files, directories);
                } else {
                    files.add(f);
                }
View Full Code Here

        }
    }

    public List<Map<String, String>> getDirectoryFiles() {
        List<Map<String, String>> files = new ArrayList<>();
        IgnoredNames ignoredNames = getEnv().getIgnoredNames();

        for (String filename : getResourceFileList()) {
            if (ignoredNames.ignore(filename)) {
                continue;
            }

            File file = new File(getResourceFile(), filename);
            Map<String, String> f = new HashMap<>();
View Full Code Here

TOP

Related Classes of org.watermint.sourcecolon.org.opensolaris.opengrok.index.IgnoredNames

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.