org.stanwood.media.model
Interface IVideoExtra

All Known Subinterfaces:
IShow
All Known Implementing Classes:
CacheShow, Show, XMLShow

public interface IVideoExtra

Should be implemented by video classes that store extra information not returned by usual getters and setters.


Method Summary
 java.util.Map<java.lang.String,java.lang.String> getExtraInfo()
          Used to get extra information to a show that their are no getters/setters for in the regular fields
 void setExtraInfo(java.util.Map<java.lang.String,java.lang.String> params)
          Used to add extra information to a show that their are no getters/setters for in the regular fields
 

Method Detail

getExtraInfo

java.util.Map<java.lang.String,java.lang.String> getExtraInfo()
Used to get extra information to a show that their are no getters/setters for in the regular fields

Returns:
The extra information in a map of key value pairs

setExtraInfo

void setExtraInfo(java.util.Map<java.lang.String,java.lang.String> params)
Used to add extra information to a show that their are no getters/setters for in the regular fields

Parameters:
params - The extra information in a map of key value pairs