Back to project page dashclock-gerrit.
The source code is released under:
Apache License
If you think the Android project dashclock-gerrit 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.plusonelabs.dashclock.gerrit; // w w w. jav a 2 s . co m public class Change { private int _number; public int getChangeId() { return _number; } public void setChangeId(int changeId) { this._number = changeId; } @Override public String toString() { return "Change [changeId=" + _number + "]"; } }