Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
if (obj instanceof IFileWrapper) {
return mFile.equals(((IFileWrapper)obj).mFile);
}
if (obj instanceof IFile) {
return mFile.equals(obj);
}
return super.equals(obj);
|
public java.io.InputStream | getContents()
return mFile.getContents();
|
public org.eclipse.core.resources.IFile | getIFile()
return mFile;
|
public java.lang.String | getName()
return mFile.getName();
|
public java.lang.String | getOsLocation()
return mFile.getLocation().toOSString();
|
public int | hashCode()
return mFile.hashCode();
|