Package org.amdatu.bndtools.plainrepoindex

Examples of org.amdatu.bndtools.plainrepoindex.Resource


     * @param file the file resource to handle;
     * @param indexers the indexers to hand of each found JAR file off to.
     * @throws Exception in case of problems accessing the found JAR file.
     */
    private void handleResource(File baseDir, File file, Indexer[] indexers) throws Exception {
        Resource resource = parseResource(baseDir, file);

        for (Indexer indexer : indexers) {
            indexer.index(resource);
        }
    }
View Full Code Here

TOP

Related Classes of org.amdatu.bndtools.plainrepoindex.Resource

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.