|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectbbc.rd.tvanytime.BasicDescription
public class BasicDescription
BasicDescsription: Represents a TV-Anytime BasicDescription object.
Constructor Summary | |
---|---|
BasicDescription()
Default constructor for objects of class BasicDescription |
|
BasicDescription(Title title)
Constructor for objects of class BasicDescription |
Method Summary | |
---|---|
void |
addCaptionLanguage(CaptionLanguage captionLanguage)
addCaptionLanguage - adds a CaptionLanguage object to the Description object |
void |
addGenre(Genre genre)
addGenre - add a Genre object to this BasicDescription object |
void |
addKeyword(Keyword keyword)
Add Keyword object to this program. |
void |
addPromotionalInformation(PromotionalInformation promotionalInformation)
addPromotionalInformation - adds a PromotionalInformation object to the Description object |
void |
addRelatedMaterial(RelatedMaterial relatedMaterial)
addRelatedMaterial - adds a RelatedMaterial object to the Description object |
void |
addSignLanguage(SignLanguage signLanguage)
addSignLanguage - adds a SignLanguage object to the Description object |
void |
addSynopsis(Synopsis synopsis)
addSynopsis - adds a Synopsis object to the Description object |
void |
addTitle(Title title)
addTitle - adds a Title object to the Description object |
java.lang.Object |
clone()
Clones itself. |
CaptionLanguage |
getCaptionLanguage(int index)
getCaptionLanguage - gets the CaptionLanguage object at the specified index |
CreditsList |
getCreditsList()
Returns the CreditsList. |
Genre |
getGenre(int index)
getGenre - returns the Genre object at the specified index |
Keyword |
getKeyword(int index)
Get Keyword object for this program. |
int |
getNumCaptionLanguages()
getNumCaptionLanguages - gets the number of CaptionLanguage objects belonging to this Description object |
int |
getNumGenres()
getNumGenres - returns the number of Genre objects in this BasicDescription object |
int |
getNumKeywords()
Get number of Keyword objects contained in this program. |
int |
getNumPromotionalInformations()
getNumPromotionalInformations - gets the number of PromotionalInformation objects belonging to this Description object |
int |
getNumRelatedMaterials()
getNumRelatedMaterials - gets the number of RelatedMaterial objects belonging to this Description object |
int |
getNumSignLanguages()
getNumSignLanguages - gets the number of SignLanguage objects belonging to this Description object |
int |
getNumSynopses()
getNumSynopses - gets the number of Synopsis objects belonging to this Description object |
int |
getNumTitles()
getNumTitles - gets the number of Title objects belonging to this Description object |
PromotionalInformation |
getPromotionalInformation(int index)
getPromotionalInformation - gets the PromotionalInformation object at the specified index |
RelatedMaterial |
getRelatedMaterial(int index)
getRelatedMaterial - gets the RelatedMaterial object at the specified index |
SignLanguage |
getSignLanguage(int index)
getSignLanguage - gets the SignLanguage object at the specified index |
Synopsis |
getSynopsis(int index)
getSynopsis - gets the Synopsis object at the specified index |
Title |
getTitle(int index)
getTitle - gets the Title object at the specified index |
void |
removeAll()
removeAll - removes all Title, Synopsis, RelatedMaterial, CaptionLanguage, SignLanguage, PromotionalInformation, Keyword and Genre objects from this Description object. |
void |
removeCaptionLanguage(int index)
removeCaptionLanguage - Removes a CaptionLanguage object from the Description object |
void |
removeGenre(int index)
removeGenre - Removes a Genre object from the Description object |
void |
removeKeyword(int index)
Removes a Keyword object from the Description object |
void |
removePromotionalInformation(int index)
removePromotionalInformation - Removes a PromotionalInformation object from the Description object |
void |
removeRelatedMaterial(int index)
removeRelatedMaterial - Removes a RelatedMaterial object from the Description object |
void |
removeSignLanguage(int index)
removeSignLanguage - Removes a SignLanguage object from the Description object |
void |
removeSynopsis(int index)
removeSynopsis - Removes a Synopsis object to the Description object |
void |
removeTitle(int index)
removeTitle - Removes a Title object to the Description object |
void |
setCreditsList(CreditsList creditsList)
Sets the CreditsList. |
java.lang.String |
toString(int indent)
toString - returns a String representation of this BasicDescription object with the specified number of tab indentations |
java.lang.String |
toXML(int indent)
Returns a XML representation of this BasicDescription object with the specified number of tab indentations |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BasicDescription(Title title)
title
- the title objectpublic BasicDescription()
Method Detail |
---|
public java.lang.String toXML(int indent)
public java.lang.String toString(int indent)
public int getNumTitles()
public Title getTitle(int index)
index
- the index of the required Title object
public void addTitle(Title title)
title
- the Title objectpublic void removeTitle(int index)
index
- The index of the object to remove.public int getNumSynopses()
public Synopsis getSynopsis(int index)
index
- the index of the required Synopsis object
public void addSynopsis(Synopsis synopsis)
synopsis
- the Synopsis objectpublic void removeSynopsis(int index)
index
- The index of the object to remove.public int getNumRelatedMaterials()
public RelatedMaterial getRelatedMaterial(int index)
index
- the index of the required RelatedMaterial object
public void addRelatedMaterial(RelatedMaterial relatedMaterial)
relatedMaterial
- the RelatedMaterial objectpublic void removeRelatedMaterial(int index)
index
- The index of the object to remove.public int getNumCaptionLanguages()
public CaptionLanguage getCaptionLanguage(int index)
index
- the index of the required CaptionLanguage object
public void addCaptionLanguage(CaptionLanguage captionLanguage)
title
- the CaptionLanguage objectpublic void removeCaptionLanguage(int index)
index
- The index of the object to remove.public int getNumSignLanguages()
public SignLanguage getSignLanguage(int index)
index
- the index of the required CaptionLanguage object
public void addSignLanguage(SignLanguage signLanguage)
signLanguage
- the SignLanguage objectpublic void removeSignLanguage(int index)
index
- The index of the object to remove.public int getNumPromotionalInformations()
public PromotionalInformation getPromotionalInformation(int index)
index
- the index of the required PromotionalInformation object
public void addPromotionalInformation(PromotionalInformation promotionalInformation)
PromotionalInformation
- the PromotionalInformation objectpublic void removePromotionalInformation(int index)
index
- The index of the object to remove.public void addGenre(Genre genre)
genre
- the Genre object to be addedpublic void removeGenre(int index)
index
- The index of the object to remove.public int getNumGenres()
public Genre getGenre(int index)
index
- the index of the required Genre object
public int getNumKeywords()
public Keyword getKeyword(int index)
index
- The index of the Keyword object to access.
public void addKeyword(Keyword keyword)
memberOf
- The Keyword object to add to this program.public void removeKeyword(int index)
index
- The index of the object to remove.public CreditsList getCreditsList()
public void setCreditsList(CreditsList creditsList)
creditsList
- The credits list.public void removeAll()
public java.lang.Object clone()
clone
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |