Creates a new zip entry for the given name. This is equivalent to new ZipEntry(name). @param name the name of the zip entry.
(String name)
| 375 | * @param name the name of the zip entry. |
| 376 | */ |
| 377 | protected ZipEntry createZipEntry(String name) |
| 378 | { |
| 379 | return new ZipEntry(name); |
| 380 | } |
| 381 | } |