Package com.jogamp.gluegen.jcpp
Interface VirtualFile
-
public interface VirtualFileAn extremely lightweight virtual file interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualFilegetChildFile(String name)StringgetName()VirtualFilegetParentFile()StringgetPath()SourcegetSource()booleanisFile()
-
-
-
Method Detail
-
isFile
boolean isFile()
-
getPath
@Nonnull String getPath()
-
getName
@Nonnull String getName()
-
getParentFile
@CheckForNull VirtualFile getParentFile()
-
getChildFile
@Nonnull VirtualFile getChildFile(String name)
-
getSource
@Nonnull Source getSource() throws IOException
- Throws:
IOException
-
-