Back to project page EnklawaPlayer.
The source code is released under:
GNU General Public License
If you think the Android project EnklawaPlayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package macbury.pod.db.models; //from w w w. j av a2 s . c om import com.j256.ormlite.field.DatabaseField; import com.j256.ormlite.table.DatabaseTable; import java.util.Date; /** * Created by macbury on 12.09.14. */ @DatabaseTable(tableName = "forum_threads") public class ForumThread { @DatabaseField(canBeNull = false, generatedId = true) public int id; @DatabaseField public String title; @DatabaseField public String content; @DatabaseField(columnName = "pub_date") public Date pubDate; @DatabaseField public String link; }