Skip to content

Instantly share code, notes, and snippets.

@veb
Created June 29, 2014 02:45
Show Gist options
  • Save veb/e692dbd72b8e568b76f1 to your computer and use it in GitHub Desktop.
Save veb/e692dbd72b8e568b76f1 to your computer and use it in GitHub Desktop.
package com.omnibuttie.therable.model;
import com.orm.SugarRecord;
/**
* Created by mike on 29/06/14.
*/
public class HashTagEntry extends SugarRecord<JournalEntry> {
String tag;
JournalEntry entry;
public HashTagEntry(JournalEntry entry, String tag) {
this.entry = entry;
this.tag = tag;
}
public HashTagEntry() {
}
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