Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0891b654 authored by Juan Sebastian Martinez's avatar Juan Sebastian Martinez Committed by Android (Google) Code Review
Browse files

Merge "Fixed docstring on SliderTracker and SeekableSliderTracker" into main

parents f8e724fa 2e61e595
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -36,8 +36,8 @@ import kotlinx.coroutines.launch
 *
 * @param[sliderStateListener] Listener of the slider state.
 * @param[sliderEventProducer] Producer of slider events arising from the slider.
 * @property[scope] [CoroutineScope] where the collection of slider events and the launch of timer
 *   jobs occur.
 * @param[mainDispatcher] [CoroutineDispatcher] used to launch coroutines for the collection of
 *   slider events and the launch of timer jobs.
 * @property[config] Configuration parameters of the slider tracker.
 */
class SeekableSliderTracker(
+2 −1
Original line number Diff line number Diff line
@@ -27,7 +27,8 @@ import kotlinx.coroutines.launch
 * The tracker maintains a state machine operated by slider events coming from a
 * [SliderEventProducer]. An action is executed in each state via a [SliderListener].
 *
 * @param[scope] [CoroutineScope] to launch the collection of [SliderEvent].
 * @property[scope] [CoroutineScope] to launch the collection of [SliderEvent] and state machine
 *   logic.
 * @property[sliderListener] [SliderListener] to execute actions on a given [SliderState].
 * @property[eventProducer] Producer of [SliderEvent] to iterate over a state machine.
 */