| 322 | } |
| 323 | |
| 324 | private static class ZipEntryFactory implements EntryFactory { |
| 325 | public static final ZipEntryFactory Instance = new ZipEntryFactory(); |
| 326 | |
| 327 | public ZipEntry makeEntry(Window window, int pointer) { |
| 328 | return new MyZipEntry(window, pointer); |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | private static class MyEnumeration implements Enumeration<ZipEntry> { |
| 333 | private final EntryFactory factory; |
nothing calls this directly
no outgoing calls
no test coverage detected