import java.io.File;
import third_parties.daveKoeller.AlphanumComparator;
-
public class OCFile implements Parcelable, Comparable<OCFile> {
public static final Parcelable.Creator<OCFile> CREATOR = new Parcelable.Creator<OCFile>() {
this.mRemoteId = remoteId;
}
+ public boolean isSynchronizing() {
+ // TODO real implementation
+ return false;
+ }
+
+ public boolean isDownloading() {
+ // TODO real implementation
+ return false;
+ }
+
}