|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IVideo
This interface is used to define the methods that are common for any type of video that can be shown as a tv show or a film.
Method Summary | |
---|---|
java.util.List<java.lang.String> |
getDirectors()
Used to get a list of directors for the video |
java.util.Collection<IVideoFile> |
getFiles()
Used to get a list of files that belong to the video entry |
java.lang.String |
getSummary()
Used to get a summary of the video |
java.lang.String |
getTitle()
Used to get the video title. |
java.util.List<java.lang.String> |
getWriters()
Used to get a list of writers for the video |
void |
setDirectors(java.util.List<java.lang.String> directors)
Used to set a list of directors for the episode |
void |
setFiles(java.util.Collection<IVideoFile> videoFiles)
Used to set the list of files that belong to the video entry |
void |
setSummary(java.lang.String summary)
Used to set the films summary |
void |
setTitle(java.lang.String title)
Used to set the title of the video |
void |
setWriters(java.util.List<java.lang.String> writers)
Used to set a list of writers for the video |
Method Detail |
---|
java.lang.String getTitle()
void setTitle(java.lang.String title)
title
- The title of the videojava.util.List<java.lang.String> getDirectors()
void setDirectors(java.util.List<java.lang.String> directors)
directors
- The list of directors for the episodejava.util.List<java.lang.String> getWriters()
void setWriters(java.util.List<java.lang.String> writers)
writers
- The list of writersjava.lang.String getSummary()
void setSummary(java.lang.String summary)
summary
- The films summaryjava.util.Collection<IVideoFile> getFiles()
void setFiles(java.util.Collection<IVideoFile> videoFiles)
videoFiles
- The list of files
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |