Back to project page RejsekortReader.
The source code is released under:
GNU General Public License
If you think the Android project RejsekortReader 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 info.rejsekort.reader.rkf; //from w w w.ja v a 2s .com import info.rejsekort.reader.rkf.blocks.TCELBlock; public class TCELBlock_ extends TCELBlock implements Comparable<TCELBlock_> { public TCELBlock_(byte[] bits) { super(bits); } @Override public int compareTo(TCELBlock_ another) { int i = mEventDateStamp.mDate.compareTo(another.mEventDateStamp.mDate); if (i == 0) return mEventTimeStamp.mTime.compareTo(another.mEventTimeStamp.mTime); return i; } }