Gets true, if the entry is a directory. This is solely determined by the name, a trailing slash '/' marks a directory.
()
| 417 | * determined by the name, a trailing slash '/' marks a directory. |
| 418 | */ |
| 419 | public boolean isDirectory() |
| 420 | { |
| 421 | int nlen = name.length(); |
| 422 | return nlen > 0 && name.charAt(nlen - 1) == '/'; |
| 423 | } |
| 424 | |
| 425 | /** |
| 426 | * Gets the string representation of this ZipEntry. This is just |
no test coverage detected