Package com.sun.tools.javac.util.JavacFileManager

Examples of com.sun.tools.javac.util.JavacFileManager.ZipFileIndexArchive


        check(je, jarEntryTime, zfi + ":" + TEST_ENTRY_NAME, zfiTime);

        Context context = new Context();
        JavacFileManager fm = new JavacFileManager(context, false, null);
        ZipFileIndexArchive zfia =
            fm.new ZipFileIndexArchive(fm, zfi);
        int sep = TEST_ENTRY_NAME.lastIndexOf("/");
        JavaFileObject jfo =
                zfia.getFileObject(TEST_ENTRY_NAME.substring(0, sep + 1),
                    TEST_ENTRY_NAME.substring(sep + 1));
        long jfoTime = jfo.getLastModified();

        check(je, jarEntryTime, jfo, jfoTime);
View Full Code Here

TOP

Related Classes of com.sun.tools.javac.util.JavacFileManager.ZipFileIndexArchive

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.