提交 19087a7f 编写于 作者: O olly 提交者: Oliver Woodman

Fix broken Javadoc

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=162601961
上级 54e869cb
...@@ -164,7 +164,7 @@ public final class MediaSessionConnector { ...@@ -164,7 +164,7 @@ public final class MediaSessionConnector {
*/ */
long getActiveQueueItemId(@Nullable ExoPlayer player); long getActiveQueueItemId(@Nullable ExoPlayer player);
/** /**
* See {@link MediaSessionCompat.Callback#onSkipToPrevious()). * See {@link MediaSessionCompat.Callback#onSkipToPrevious()}.
*/ */
void onSkipToPrevious(ExoPlayer player); void onSkipToPrevious(ExoPlayer player);
/** /**
...@@ -200,7 +200,7 @@ public final class MediaSessionConnector { ...@@ -200,7 +200,7 @@ public final class MediaSessionConnector {
*/ */
void onRemoveQueueItem(ExoPlayer player, MediaDescriptionCompat description); void onRemoveQueueItem(ExoPlayer player, MediaDescriptionCompat description);
/** /**
* See {@link MediaSessionCompat.Callback#onRemoveQueueItemAt(int index)). * See {@link MediaSessionCompat.Callback#onRemoveQueueItemAt(int index)}.
*/ */
void onRemoveQueueItemAt(ExoPlayer player, int index); void onRemoveQueueItemAt(ExoPlayer player, int index);
/** /**
......
...@@ -117,7 +117,7 @@ public final class DefaultExtractorsFactory implements ExtractorsFactory { ...@@ -117,7 +117,7 @@ public final class DefaultExtractorsFactory implements ExtractorsFactory {
/** /**
* Sets the mode for {@link TsExtractor} instances created by the factory. * Sets the mode for {@link TsExtractor} instances created by the factory.
* *
* @see TsExtractor#TsExtractor(int, TimestampAdjuster, TsPayloadReader.Factory). * @see TsExtractor#TsExtractor(int, TimestampAdjuster, TsPayloadReader.Factory)
* @param mode The mode to use. * @param mode The mode to use.
* @return The factory, for convenience. * @return The factory, for convenience.
*/ */
......
...@@ -82,7 +82,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl ...@@ -82,7 +82,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl
* Adds a {@link MediaSource} to the playlist. * Adds a {@link MediaSource} to the playlist.
* *
* @param index The index at which the new {@link MediaSource} will be inserted. This index must * @param index The index at which the new {@link MediaSource} will be inserted. This index must
* be in the range of 0 <= index <= {@link #getSize()}. * be in the range of 0 &lt;= index &lt;= {@link #getSize()}.
* @param mediaSource The {@link MediaSource} to be added to the list. * @param mediaSource The {@link MediaSource} to be added to the list.
*/ */
public synchronized void addMediaSource(int index, MediaSource mediaSource) { public synchronized void addMediaSource(int index, MediaSource mediaSource) {
...@@ -108,7 +108,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl ...@@ -108,7 +108,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl
* Adds multiple {@link MediaSource}s to the playlist. * Adds multiple {@link MediaSource}s to the playlist.
* *
* @param index The index at which the new {@link MediaSource}s will be inserted. This index must * @param index The index at which the new {@link MediaSource}s will be inserted. This index must
* be in the range of 0 <= index <= {@link #getSize()}. * be in the range of 0 &lt;= index &lt;= {@link #getSize()}.
* @param mediaSources A collection of {@link MediaSource}s to be added to the list. The media * @param mediaSources A collection of {@link MediaSource}s to be added to the list. The media
* sources are added in the order in which they appear in this collection. * sources are added in the order in which they appear in this collection.
*/ */
...@@ -128,7 +128,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl ...@@ -128,7 +128,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl
* Removes a {@link MediaSource} from the playlist. * Removes a {@link MediaSource} from the playlist.
* *
* @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 &lt;= index &lt; {@link #getSize()}.
*/ */
public synchronized void removeMediaSource(int index) { public synchronized void removeMediaSource(int index) {
mediaSourcesPublic.remove(index); mediaSourcesPublic.remove(index);
...@@ -141,9 +141,9 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl ...@@ -141,9 +141,9 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl
* Moves an existing {@link MediaSource} within the playlist. * Moves an existing {@link MediaSource} within the playlist.
* *
* @param currentIndex The current index of the media source in the playlist. This index must be * @param currentIndex The current index of the media source in the playlist. This index must be
* in the range of 0 <= index < {@link #getSize()}. * in the range of 0 &lt;= index &lt; {@link #getSize()}.
* @param newIndex The target index of the media source in the playlist. This index must be in the * @param newIndex The target index of the media source in the playlist. This index must be in the
* range of 0 <= index < {@link #getSize()}. * range of 0 &lt;= index &lt; {@link #getSize()}.
*/ */
public synchronized void moveMediaSource(int currentIndex, int newIndex) { public synchronized void moveMediaSource(int currentIndex, int newIndex) {
if (currentIndex == newIndex) { if (currentIndex == newIndex) {
...@@ -166,7 +166,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl ...@@ -166,7 +166,7 @@ public final class DynamicConcatenatingMediaSource implements MediaSource, ExoPl
/** /**
* Returns the {@link MediaSource} at a specified index. * Returns the {@link MediaSource} at a specified index.
* *
* @param index A index in the range of 0 <= index <= {@link #getSize()}. * @param index A index in the range of 0 &lt;= index &lt;= {@link #getSize()}.
* @return The {@link MediaSource} at this index. * @return The {@link MediaSource} at this index.
*/ */
public synchronized MediaSource getMediaSource(int index) { public synchronized MediaSource getMediaSource(int index) {
......
...@@ -27,12 +27,12 @@ public interface Clock { ...@@ -27,12 +27,12 @@ public interface Clock {
Clock DEFAULT = new SystemClock(); Clock DEFAULT = new SystemClock();
/** /**
* @see android.os.SystemClock#elapsedRealtime(). * @see android.os.SystemClock#elapsedRealtime()
*/ */
long elapsedRealtime(); long elapsedRealtime();
/** /**
* @see android.os.SystemClock#sleep(long). * @see android.os.SystemClock#sleep(long)
*/ */
void sleep(long sleepTimeMs); void sleep(long sleepTimeMs);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册