| Revision 376,
897 bytes
checked in by zach, 4 years ago
(diff) |
|
Updating CoreComponent interfaces
|
| Line | |
|---|
| 1 | package com.longtailvideo.jwplayer.view { |
|---|
| 2 | |
|---|
| 3 | /** |
|---|
| 4 | * Sent when the user interface requests that the player play the next item in its playlist |
|---|
| 5 | * |
|---|
| 6 | * @eventType com.longtailvideo.jwplayer.events.ViewEvent.JWPLAYER_VIEW_NEXT |
|---|
| 7 | */ |
|---|
| 8 | [Event(name="jwPlayerViewNext", type = "com.longtailvideo.jwplayer.events.ViewEvent")] |
|---|
| 9 | |
|---|
| 10 | /** |
|---|
| 11 | * Sent when the user interface requests that the player play the previous item in its playlist |
|---|
| 12 | * |
|---|
| 13 | * @eventType com.longtailvideo.jwplayer.events.ViewEvent.JWPLAYER_VIEW_PREV |
|---|
| 14 | */ |
|---|
| 15 | [Event(name="jwPlayerViewPrev", type = "com.longtailvideo.jwplayer.events.ViewEvent")] |
|---|
| 16 | |
|---|
| 17 | /** |
|---|
| 18 | * Sent when the user requests the player skip to the given playlist index |
|---|
| 19 | * |
|---|
| 20 | * @eventType com.longtailvideo.jwplayer.events.ViewEvent.JWPLAYER_VIEW_ITEM |
|---|
| 21 | */ |
|---|
| 22 | [Event(name="jwPlayerViewItem", type = "com.longtailvideo.jwplayer.events.ViewEvent")] |
|---|
| 23 | |
|---|
| 24 | public interface IPlaylistComponent { |
|---|
| 25 | } |
|---|
| 26 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.