Package net.xeoh.plugins.base.impl.classpath.cache.JARCache

Examples of net.xeoh.plugins.base.impl.classpath.cache.JARCache.JARInformation


        final Collection<String> rval = new ArrayList<String>();
        if (!this.initializedProperly) return rval;

        // Check if we can get the requested information out of the cache
        JARInformation cacheEntry = null;

        // If it is a JAR entry, check if we have cache information
        if (location instanceof JARClasspathLocation) {
            cacheEntry = ((JARClasspathLocation) location).getCacheEntry();
View Full Code Here


        final Collection<String> rval = new ArrayList<String>();
        if (!this.initializedProperly) return rval;

        // Check if we can get the requested information out of the cache
        JARInformation cacheEntry = null;

        // If it is a JAR entry, check if we have cache information
        if (location instanceof JARClasspathLocation) {
            cacheEntry = ((JARClasspathLocation) location).getCacheEntry();
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.base.impl.classpath.cache.JARCache.JARInformation

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.