Back to project page vitdroid-android.
The source code is released under:
Apache License
If you think the Android project vitdroid-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.googlecode.android.widgets.DateSlider; /*from ww w. j ava 2 s . co m*/ /** * Very simple helper class that defines a time unit with a label (text) its start- * and end date */ public class TimeObject { public final CharSequence text; public final long startTime, endTime; public TimeObject(final CharSequence text, final long startTime, final long endTime) { this.text = text; this.startTime = startTime; this.endTime = endTime; } }