mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
docs(playlist): fix javadoc comments
This commit is contained in:
parent
c9b6a73cd8
commit
2c801ca267
1 changed files with 3 additions and 3 deletions
|
|
@ -280,10 +280,10 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
|
||||||
* Removes a {@link MediaSource} from the playlist and executes a custom action on completion.
|
* Removes a {@link MediaSource} from the playlist and executes a custom action on completion.
|
||||||
*
|
*
|
||||||
* <p>Note: If you want to move the instance, it's preferable to use {@link #moveMediaSource(int,
|
* <p>Note: If you want to move the instance, it's preferable to use {@link #moveMediaSource(int,
|
||||||
* int)} instead.
|
* int, Runnable)} instead.
|
||||||
*
|
*
|
||||||
* <p>Note: If you want to remove a set of contiguous sources, it's preferable to use
|
* <p>Note: If you want to remove a set of contiguous sources, it's preferable to use
|
||||||
* {@link #removeMediaSourceRange(int, int)} instead.
|
* {@link #removeMediaSourceRange(int, int, Runnable)} instead.
|
||||||
*
|
*
|
||||||
* @param index The index at which the media source will be removed. This index must be in the
|
* @param index The index at which the media source will be removed. This index must be in the
|
||||||
* range of 0 <= index < {@link #getSize()}.
|
* range of 0 <= index < {@link #getSize()}.
|
||||||
|
|
@ -346,7 +346,7 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
|
||||||
* @throws IndexOutOfBoundsException when range is malformed, i.e. {@code fromIndex} >
|
* @throws IndexOutOfBoundsException when range is malformed, i.e. {@code fromIndex} >
|
||||||
* {@code toIndex}
|
* {@code toIndex}
|
||||||
* @param actionOnCompletion A {@link Runnable} which is executed immediately after the media
|
* @param actionOnCompletion A {@link Runnable} which is executed immediately after the media
|
||||||
* source has been removed from the playlist.
|
* source range has been removed from the playlist.
|
||||||
*/
|
*/
|
||||||
public final synchronized void removeMediaSourceRange(
|
public final synchronized void removeMediaSourceRange(
|
||||||
int fromIndex, int toIndex, @Nullable Runnable actionOnCompletion) {
|
int fromIndex, int toIndex, @Nullable Runnable actionOnCompletion) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue