< prev index next >

src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileAttributes.java

Print this page
rev 53081 : 8213031: (zipfs) Add support for POSIX file permissions
Reviewed-by: simonis

*** 23,40 **** * questions. */ package jdk.nio.zipfs; ! import java.nio.file.attribute.BasicFileAttributes; /** * The attributes of a file stored in a zip file. * * @author Xueming Shen, Rajendra Gutupalli,Jaya Hangal */ ! interface ZipFileAttributes extends BasicFileAttributes { public long compressedSize(); public long crc(); public int method(); public byte[] extra(); public byte[] comment(); --- 23,40 ---- * questions. */ package jdk.nio.zipfs; ! import java.nio.file.attribute.PosixFileAttributes; /** * The attributes of a file stored in a zip file. * * @author Xueming Shen, Rajendra Gutupalli,Jaya Hangal */ ! interface ZipFileAttributes extends PosixFileAttributes { public long compressedSize(); public long crc(); public int method(); public byte[] extra(); public byte[] comment();
< prev index next >