Skip to content

Commit 236e509

Browse files
adding missing files
git-svn-id: http://android-shuffle.googlecode.com/svn/trunk@213 c433d9f2-e643-0410-a449-b9b772e888ec
1 parent e4f6fc2 commit 236e509

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package org.dodgybits.shuffle.android.synchronisation.tracks;
2+
3+
import java.util.Map;
4+
5+
import org.dodgybits.shuffle.android.core.model.Id;
6+
import org.dodgybits.shuffle.android.synchronisation.tracks.model.TracksEntity;
7+
8+
public class TracksEntities<E extends TracksEntity> {
9+
private Map<Id, E> mEntities;
10+
private boolean mErrorFree;
11+
12+
public TracksEntities(Map<Id, E> entities, boolean errorFree) {
13+
mEntities = entities;
14+
mErrorFree = errorFree;
15+
}
16+
17+
public Map<Id, E> getEntities() {
18+
return mEntities;
19+
}
20+
21+
public boolean isErrorFree() {
22+
return mErrorFree;
23+
}
24+
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing;
2+
3+
public class ParseResult<T> {
4+
private boolean mSuccess;
5+
private T mResult;
6+
7+
public ParseResult(T result, boolean success) {
8+
mSuccess = success;
9+
mResult = result;
10+
}
11+
12+
public ParseResult() {
13+
mSuccess = false;
14+
mResult = null;
15+
}
16+
17+
public T getResult() {
18+
return mResult;
19+
}
20+
public boolean IsSuccess(){
21+
return mSuccess;
22+
}
23+
24+
}

0 commit comments

Comments
 (0)