Package org.auraframework.util.javascript

Examples of org.auraframework.util.javascript.MultiStreamReader


    protected static Hash computeGroupHash(Set<File> files) throws IOException {
        Set<URL> urls = new TreeSet<URL>(compareUrls);
        for (File file : files) {
            urls.add(file.toURI().toURL());
        }
        return new Hash(new MultiStreamReader(urls));
    }
View Full Code Here

TOP

Related Classes of org.auraframework.util.javascript.MultiStreamReader

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.