Package gw.fs
Interface IFile
-
- All Superinterfaces:
IResource
- All Known Implementing Classes:
JarEntryFileImpl,JavaFileImpl,PathFileImpl,PhysicalFileImpl,URLFileImpl
public interface IFile extends IResource
-
-
Field Summary
Fields Modifier and Type Field Description static IFile[]EMPTY_ARRAY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBaseName()java.lang.StringgetExtension()java.io.InputStreamopenInputStream()java.io.OutputStreamopenOutputStream()java.io.OutputStreamopenOutputStreamForAppend()-
Methods inherited from interface gw.fs.IResource
create, delete, exists, getName, getParent, getPath, isChildOf, isDescendantOf, isInJar, isJavaFile, toJavaFile, toURI
-
-
-
-
Field Detail
-
EMPTY_ARRAY
static final IFile[] EMPTY_ARRAY
-
-
Method Detail
-
openInputStream
java.io.InputStream openInputStream() throws java.io.IOException- Throws:
java.io.IOException
-
openOutputStream
java.io.OutputStream openOutputStream() throws java.io.IOException- Throws:
java.io.IOException
-
openOutputStreamForAppend
java.io.OutputStream openOutputStreamForAppend() throws java.io.IOException- Throws:
java.io.IOException
-
getExtension
java.lang.String getExtension()
-
getBaseName
java.lang.String getBaseName()
-
-