Package org.amdatu.bndtools.plainrepoindex

Examples of org.amdatu.bndtools.plainrepoindex.ObrIndexer


     * @return
     * @throws IOException
     */
    public static Indexer create(String name, String repositoryName, File outputDirectory) throws IOException {
        if (PRE_R5_OBR.equals(name)) {
            return new ObrIndexer(repositoryName, outputDirectory);
        } else if (R5_OBR.equals(name)) {
            return new R5ObrIndexer(repositoryName, outputDirectory);
        } else {
            throw new IllegalArgumentException("Invalid indexer name: " + name);
        }
View Full Code Here

TOP

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

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.