MCPcopy Index your code
hub / github.com/dumbledore/AlbiteREADER / isDirectory

Method isDirectory

src/gnu/zip/ZipEntry.java:419–423  ·  view source on GitHub ↗

Gets true, if the entry is a directory. This is solely determined by the name, a trailing slash '/' marks a directory.

()

Source from the content-addressed store, hash-verified

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

Callers 5

writeDataMethod · 0.80
RandomReadingFileMethod · 0.80
reloadDictionariesMethod · 0.80
getEntryMethod · 0.80
setDirMethod · 0.80

Calls 1

lengthMethod · 0.80

Tested by

no test coverage detected