src/share/classes/com/sun/tools/javac/file/ZipFileIndex.java

changeset 333
7c2d6da61646
parent 184
905e151a185a
child 424
86b773b7cb40
equal deleted inserted replaced
332:cf08b64e87da 333:7c2d6da61646
65 * specified by "cachezipindexdir" option. 65 * specified by "cachezipindexdir" option.
66 * 66 *
67 * If nonBatchMode option is specified (-XDnonBatchMode) the compiler will use timestamp 67 * If nonBatchMode option is specified (-XDnonBatchMode) the compiler will use timestamp
68 * checking to reindex the zip files if it is needed. In batch mode the timestamps are not checked 68 * checking to reindex the zip files if it is needed. In batch mode the timestamps are not checked
69 * and the compiler uses the cached indexes. 69 * and the compiler uses the cached indexes.
70 *
71 * <p><b>This is NOT part of any API supported by Sun Microsystems.
72 * If you write code that depends on this, you do so at your own risk.
73 * This code and its internal interfaces are subject to change or
74 * deletion without notice.</b>
70 */ 75 */
71 public class ZipFileIndex { 76 public class ZipFileIndex {
72 private static final String MIN_CHAR = String.valueOf(Character.MIN_VALUE); 77 private static final String MIN_CHAR = String.valueOf(Character.MIN_VALUE);
73 private static final String MAX_CHAR = String.valueOf(Character.MAX_VALUE); 78 private static final String MAX_CHAR = String.valueOf(Character.MAX_VALUE);
74 79

mercurial