Package org.codehaus.loom.classman.reader

Examples of org.codehaus.loom.classman.reader.ClassLoaderSetReader


    protected ClassLoaderSetMetaData buildFromStream( final InputStream stream )
        throws Exception
    {
        try
        {
            final ClassLoaderSetReader builder = new ClassLoaderSetReader();
            final Document config = load( stream );
            return builder.build( config.getDocumentElement() );
        }
        catch( final Exception e )
        {
            fail( "Error building ClassLoaderSet: " + e );
            return null;
View Full Code Here

TOP

Related Classes of org.codehaus.loom.classman.reader.ClassLoaderSetReader

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.