Android Open Source - XStopwatch Constants






From Project

Back to project page XStopwatch.

License

The source code is released under:

GNU General Public License

If you think the Android project XStopwatch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * XStopwatch / XTimer/*from  ww w  .  j av a2s  .co  m*/
 * Copyright (C) 2014 by Dan Wallach
 * Home page: http://www.cs.rice.edu/~dwallach/xstopwatch/
 * Licensing: http://www.cs.rice.edu/~dwallach/xstopwatch/licensing.html
 */
package org.dwallach.xstopwatch;

public class Constants {
    public static final String prefStopwatchRunning = "running";
    public static final String prefStopwatchReset = "reset";
    public static final String prefStopwatchStartTime = "start";
    public static final String prefStopwatchBaseTime = "base";
    public static final String prefStopwatchUpdateTimestamp = "updateTimestamp";

    public static final String sharedPrefsStopwatch = "org.dwallach.x.stopwatch.prefs";
    public static final String stopwatchUpdateIntent = "org.dwallach.x.stopwatch.update";
    public static final String stopwatchQueryIntent = "org.dwallach.x.stopwatch.query";
    public static final String stopwatchStartStopIntent = "org.dwallach.x.stopwatch.startstop";

    public static final String prefTimerRunning = "running";
    public static final String prefTimerReset = "reset";
    public static final String prefTimerStartTime = "start";
    public static final String prefTimerPauseElapsed = "elapsed";
    public static final String prefTimerDuration = "duration";
    public static final String prefTimerUpdateTimestamp = "updateTimestamp";

    public static final String sharedPrefsTimer = "org.dwallach.x.timer.prefs";
    public static final String timerUpdateIntent = "org.dwallach.x.timer.update";
    public static final String timerQueryIntent = "org.dwallach.x.timer.query";
    public static final String timerStartStopIntent = "org.dwallach.x.timer.startstop";

    public static final String actionTimerComplete = "org.dwallach.x.timer.ACTION_TIMER_COMPLETE";

}




Java Source Code List

org.dwallach.xstopwatch.Constants.java
org.dwallach.xstopwatch.NotificationHelper.java
org.dwallach.xstopwatch.NotificationService.java
org.dwallach.xstopwatch.PreferencesHelper.java
org.dwallach.xstopwatch.Receiver.java
org.dwallach.xstopwatch.SharedState.java
org.dwallach.xstopwatch.StopwatchActivity.java
org.dwallach.xstopwatch.StopwatchState.java
org.dwallach.xstopwatch.StopwatchText.java
org.dwallach.xstopwatch.TimerActivity.java
org.dwallach.xstopwatch.TimerState.java