Package gw.internal.gosu.module.fs
Class PathFileImpl
- java.lang.Object
-
- gw.internal.gosu.module.fs.PathResourceImpl
-
- gw.internal.gosu.module.fs.PathFileImpl
-
- All Implemented Interfaces:
IFile
,IResource
,Serializable
public class PathFileImpl extends PathResourceImpl implements IFile
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface gw.fs.IFile
EMPTY_ARRAY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
exists()
String
getBaseName()
String
getExtension()
InputStream
openInputStream()
OutputStream
openOutputStream()
OutputStream
openOutputStreamForAppend()
-
Methods inherited from class gw.internal.gosu.module.fs.PathResourceImpl
create, delete, equals, getName, getParent, getPath, hashCode, isChildOf, isDescendantOf, isInJar, isJavaFile, toJavaFile, toString, toURI
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface gw.fs.IResource
create, delete, getName, getParent, getPath, isChildOf, isDescendantOf, isInJar, isJavaFile, toJavaFile, toURI
-
-
-
-
Method Detail
-
openInputStream
public InputStream openInputStream() throws IOException
- Specified by:
openInputStream
in interfaceIFile
- Throws:
IOException
-
openOutputStream
public OutputStream openOutputStream() throws IOException
- Specified by:
openOutputStream
in interfaceIFile
- Throws:
IOException
-
openOutputStreamForAppend
public OutputStream openOutputStreamForAppend() throws IOException
- Specified by:
openOutputStreamForAppend
in interfaceIFile
- Throws:
IOException
-
getExtension
public String getExtension()
- Specified by:
getExtension
in interfaceIFile
-
getBaseName
public String getBaseName()
- Specified by:
getBaseName
in interfaceIFile
-
-