Searched defs:readAttributes (Results 26 - 29 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java695 Map<String, Object> readAttributes(String attributes, LinkOption... options) method in class:ZipPath
713 return zfv.readAttributes(attrs);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyleContext.java568 public void readAttributes(ObjectInputStream in, method in class:StyleContext
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java1650 * BasicFileAttributes attrs = Files.readAttributes(path, BasicFileAttributes.class);
1655 * PosixFileAttributes attrs = Files.readAttributes(path, PosixFileAttributes.class, NOFOLLOW_LINKS);
1679 public static <A extends BasicFileAttributes> A readAttributes(Path path, method in class:Files
1684 return provider(path).readAttributes(path, type, options);
1816 Map<String,Object> map = readAttributes(path, attribute, options);
1907 public static Map<String,Object> readAttributes(Path path, String attributes, method in class:Files
1911 return provider(path).readAttributes(path, attributes, options);
1951 return readAttributes(path, PosixFileAttributes.class, options).permissions();
2079 * read with the {@link #readAttributes(Path,Class,LinkOption[])
2080 * readAttributes} metho
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java219 public Map<String,Object> readAttributes(Path file, String attributes, LinkOption... options) method in class:PassThroughFileSystem.PassThroughProvider
222 return Files.readAttributes(unwrap(file), attributes, options);
234 public <A extends BasicFileAttributes> A readAttributes(Path file, method in class:PassThroughFileSystem.PassThroughProvider
239 return Files.readAttributes(unwrap(file), type, options);

Completed in 35 milliseconds

12