Interface TextOutput
-
public interface TextOutput
Receives text output.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
onCues(CueGroup cueGroup)
Called when there is a change in theCueGroup
.default void
onCues(List<Cue> cues)
Deprecated.UseonCues(CueGroup)
instead.
-
-
-
Method Detail
-
onCues
@Deprecated default void onCues(List<Cue> cues)
Deprecated.UseonCues(CueGroup)
instead.Called when there is a change in theCues
.Both
onCues(List)
andonCues(CueGroup)
are called when there is a change in the cues. You should only implement one or the other.
-
onCues
void onCues(CueGroup cueGroup)
Called when there is a change in theCueGroup
.Both
onCues(List)
andonCues(CueGroup)
are called when there is a change in the cues You should only implement one or the other.
-
-