Interface TextOutput
-
public interface TextOutputReceives text output.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidonCues(CueGroup cueGroup)Called when there is a change in theCueGroup.default voidonCues(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.
-
-