Searched refs:JrtFileAttributeView (Results 1 - 4 of 4) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtFileAttributeView.java43 final class JrtFileAttributeView implements BasicFileAttributeView { class in inherits:BasicFileAttributeView
63 private JrtFileAttributeView(JrtPath path, boolean isJrtView, LinkOption... options) { method in class:JrtFileAttributeView
73 return (V) new JrtFileAttributeView(path, false, options);
75 if (type == JrtFileAttributeView.class) {
76 return (V) new JrtFileAttributeView(path, true, options);
81 static JrtFileAttributeView get(JrtPath path, String type, LinkOption... options) {
84 return new JrtFileAttributeView(path, false, options);
87 return new JrtFileAttributeView(path, true, options);
H A DJrtFileStore.java102 type == JrtFileAttributeView.class;
H A DJrtFileSystemProvider.java264 return JrtFileAttributeView.get(toJrtPath(path), type, options);
H A DJrtPath.java654 JrtFileAttributeView.setAttribute(this, attribute, value);
659 return JrtFileAttributeView.readAttributes(this, attributes, options);

Completed in 41 milliseconds