Package org.jboss.jandex

Examples of org.jboss.jandex.Result


            tempJarFile.deleteOnExit();

            archiveToIndex.as(ZipExporter.class).exportTo(tempJarFile, true);

            final Indexer indexer = new Indexer();
            final Result result = JarIndexer.createJarIndex(tempJarFile, indexer, false, false, false);

            final File indexFile = result.getOutputFile();
            indexFile.deleteOnExit();

            jandexIndexAsset = new FileAsset(indexFile);
        } catch (IOException e) {
            throw new RuntimeException(e);
View Full Code Here

TOP

Related Classes of org.jboss.jandex.Result

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.