Back to project page Ticker.
The source code is released under:
Apache License
If you think the Android project Ticker 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 ca.barrenechea.ticker.data; /* w w w. j ava 2 s . c om*/ public class TimeSpan { public final int days; public final int hours; public final int minutes; public TimeSpan(int days, int hours, int minutes) { this.days = days; this.hours = hours; this.minutes = minutes; } }