Created
June 29, 2014 02:36
-
-
Save veb/92de40ef87e4f0e7c3b1 to your computer and use it in GitHub Desktop.
tagggin'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.orm.SugarRecord; | |
/** | |
* Created by mike on 29/06/14. | |
*/ | |
public class HashTagEnry extends SugarRecord<JournalEntry> { | |
String tag; | |
JournalEntry entry; | |
public HashTagEnry() { | |
} | |
public String getTag() { | |
return tag; | |
} | |
public void setTag(String tag) { | |
this.tag = tag; | |
} | |
public JournalEntry getEntry() { | |
return entry; | |
} | |
public void setEntry(JournalEntry entry) { | |
this.entry = entry; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment