Back to project page CalWatch.
The source code is released under:
GNU General Public License
If you think the Android project CalWatch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * CalWatch//from w w w .j a va 2 s.co m * Copyright (C) 2014 by Dan Wallach * Home page: http://www.cs.rice.edu/~dwallach/calwatch/ * Licensing: http://www.cs.rice.edu/~dwallach/calwatch/licensing.html */ package org.dwallach.calwatch; /** * Created by dwallach on 12/18/14. */ public final class WireEvent { public static final Long DEFAULT_STARTTIME = 0L; public static final Long DEFAULT_ENDTIME = 0L; public static final Integer DEFAULT_DISPLAYCOLOR = 0; public final Long startTime; public final Long endTime; public final Integer displayColor; public WireEvent(Long startTime, Long endTime, Integer displayColor) { this.startTime = startTime; this.endTime = endTime; this.displayColor = displayColor; } }