File tree 2 files changed +49
-0
lines changed
client/src/org/dodgybits/shuffle/android/synchronisation/tracks
2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments