diff options
author | Camil Staps | 2015-04-15 22:37:07 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-15 22:37:07 +0200 |
commit | e662c1d5ce054d4393f9ec08b29c6f3dee9d642c (patch) | |
tree | a2a659848ae318c10b73acdcf5d6e63322bcab86 /app/src/main/java/com/camilstaps/common | |
parent | Added working podcasts (diff) |
Finishing first raw version
Diffstat (limited to 'app/src/main/java/com/camilstaps/common')
-rw-r--r-- | app/src/main/java/com/camilstaps/common/Sharable.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/java/com/camilstaps/common/Sharable.java b/app/src/main/java/com/camilstaps/common/Sharable.java new file mode 100644 index 0000000..d0f8c1d --- /dev/null +++ b/app/src/main/java/com/camilstaps/common/Sharable.java @@ -0,0 +1,11 @@ +package com.camilstaps.common; + +/** + * Created by camilstaps on 15-4-15. + */ +public interface Sharable<T> { + + public abstract T getItem(int id); + public abstract int getMenuId(); + +} |