8 lines
129 B
Java
8 lines
129 B
Java
package java.nio.file;
|
|
|
|
public interface Path
|
|
// extends Comparable<Path>, Iterable<Path>
|
|
{
|
|
FileSystem getFileSystem();
|
|
}
|