Home
last modified time | relevance | path

Searched refs:stopwatchListener (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchModel.java78 void addStopwatchListener(StopwatchListener stopwatchListener) { in addStopwatchListener() argument
79 mStopwatchListeners.add(stopwatchListener); in addStopwatchListener()
85 void removeStopwatchListener(StopwatchListener stopwatchListener) { in removeStopwatchListener() argument
86 mStopwatchListeners.remove(stopwatchListener); in removeStopwatchListener()
120 for (StopwatchListener stopwatchListener : mStopwatchListeners) { in setStopwatch()
121 stopwatchListener.stopwatchUpdated(before, stopwatch); in setStopwatch()
161 for (StopwatchListener stopwatchListener : mStopwatchListeners) { in addLap()
162 stopwatchListener.lapAdded(lap); in addLap()
DDataModel.java745 public void addStopwatchListener(StopwatchListener stopwatchListener) { in addStopwatchListener() argument
747 mStopwatchModel.addStopwatchListener(stopwatchListener); in addStopwatchListener()
753 public void removeStopwatchListener(StopwatchListener stopwatchListener) { in removeStopwatchListener() argument
755 mStopwatchModel.removeStopwatchListener(stopwatchListener); in removeStopwatchListener()