Back to project page commit-android.
The source code is released under:
GNU General Public License
If you think the Android project commit-android 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.mauriciogiordano.commit.database; // w ww .jav a 2 s . c o m import com.j256.ormlite.field.DatabaseField; public class Commit { @DatabaseField private Long when; @DatabaseField private int commitmentID; public Long getWhen() { return when; } public void setWhen(Long when) { this.when = when; } public int getCommitmentID() { return commitmentID; } public void setCommitmentID(int commitmentID) { this.commitmentID = commitmentID; } }