Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
if (obj instanceof FileWrapper) {
return mFile.equals(((FileWrapper)obj).mFile);
}
if (obj instanceof File) {
return mFile.equals(obj);
}
return super.equals(obj);
|
public java.io.InputStream | getContents()
try {
return new FileInputStream(mFile);
} catch (FileNotFoundException e) {
// we'll return null below.
}
return null;
|
public org.eclipse.core.resources.IFile | getIFile()
return null;
|
public java.lang.String | getName()
return mFile.getName();
|
public java.lang.String | getOsLocation()
return mFile.getAbsolutePath();
|
public int | hashCode()
return mFile.hashCode();
|