Back to project page android-javarx-example.
The source code is released under:
Apache License
If you think the Android project android-javarx-example 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 com.bnsantos.movies.model; //from w w w. j av a 2 s .c o m import com.j256.ormlite.field.DatabaseField; import java.util.Date; /** * Created by bruno on 14/11/14. */ public class ReleaseDates { @DatabaseField(generatedId = true, columnName = "id") private Integer id; @DatabaseField() private Date theater; @DatabaseField() private Date dvd; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Date getTheater() { return theater; } public void setTheater(Date theater) { this.theater = theater; } public Date getDvd() { return dvd; } public void setDvd(Date dvd) { this.dvd = dvd; } }