Fix minor Javadoc error

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=164706078
This commit is contained in:
olly 2017-08-09 03:26:18 -07:00 committed by Oliver Woodman
parent 98d50c13ef
commit ebbf9f635b

View File

@ -668,10 +668,15 @@ public final class SimpleExoPlayerView extends FrameLayout {
} }
/** /**
* Gets the view onto which video is rendered. This is either a {@link SurfaceView} (default) * Gets the view onto which video is rendered. This is a:
* or a {@link TextureView} if the {@code use_texture_view} view attribute has been set to true. * <ul>
* <li>{@link SurfaceView} by default, or if the {@code surface_type} attribute is set to
* {@code surface_view}.</li>
* <li>{@link TextureView} if {@code surface_type} is {@code texture_view}.</li>
* <li>{@code null} if {@code surface_type} is {@code none}.</li>
* </ul>
* *
* @return Either a {@link SurfaceView} or a {@link TextureView}. * @return The {@link SurfaceView}, {@link TextureView} or {@code null}.
*/ */
public View getVideoSurfaceView() { public View getVideoSurfaceView() {
return surfaceView; return surfaceView;