Uses of Interface
org.dvb.xml.jdom.Element

Packages that use Element
org.dvb.application.privileged Provides application management facilities to privileged applications. 
org.dvb.service.sds Extensions to the JavaTV SI API giving access to information signalled according to DVB's service discovery and selection (SD&S) specification. 
org.dvb.tvanytime.javatv Contains TV-Anytime specific extensions to javax.tv.*. 
org.dvb.tvanytime.metadata Provides access to TV-Anytime metadata services. 
org.dvb.xml.jdom Provides access to XML via DOM in a way supporting the Java language's strong typing. 
 

Uses of Element in org.dvb.application.privileged
 

Methods in org.dvb.application.privileged with parameters of type Element
 void ApplicationStorageManager.registerUnboundApp(Element element)
          Registers new unbound application entries.
 

Uses of Element in org.dvb.service.sds
 

Methods in org.dvb.service.sds that return Element
 Element SDSRecordChangeEvent.getSDSRecord()
          Returns the SD&S record in which the change occured
 Element[] SDSRecordAccess.getServiceOfferingRecords(java.lang.String domainName)
          Provides access to the SD&S Service Offering records for a particular Service Provider
 Element[] SDSRecordAccess.getServiceProviderRecords()
          Provides access to the SD&S Service Provider records
 

Constructors in org.dvb.service.sds with parameters of type Element
SDSRecordChangeEvent(DvbSIManager siManager, javax.tv.service.SIChangeType type, Element sdsRecord)
          Constructs an SDSRecordChangeEvent object
 

Uses of Element in org.dvb.tvanytime.javatv
 

Methods in org.dvb.tvanytime.javatv that return Element
 Element TVAProgramEvent.getProgramInformationElement()
          Returns an XML Element from the relevant Program Information table entry.
 Element TVAProgramEvent.getProgramLocationElement()
          Returns an XML Element from the relevant Program Location table entry.
 

Uses of Element in org.dvb.tvanytime.metadata
 

Methods in org.dvb.tvanytime.metadata that return Element
 Element Database.getDiscoveryRecord()
          If this Database has been located using a BCG Discovery Record this method will return it as an instance of Element.
 Element DatabaseQueryResult.getRootElement()
          Get the root element of this result.
 

Methods in org.dvb.tvanytime.metadata with parameters of type Element
 void ResultListener.databaseResultAdded(DatabaseQueryResult document, Element element)
          This method is called to inform a listener that an element has been added to a DatabaseQueryResult.
 void CapabilityDescriptionsListener.postCapabilityDescriptions(IPDatabase database, Element description)
          This method is called to report the capabilities of an IPDatabase.
 

Uses of Element in org.dvb.xml.jdom
 

Methods in org.dvb.xml.jdom that return Element
 Element Element.getChild(java.lang.String name)
          Get the first child of this element that has the given name, ignoring XML namespaces.
 Element Element.getChild(java.lang.String name, Namespace ns)
          Get the first child of this element that has the given name and belongs to the given namespace.
 Element[] Element.getChildren()
          Get an array of all the children of this element.
 Element[] Element.getChildren(java.lang.String name)
          Get an array of all the children of this element that have the given name, ignoring XML namespaces.
 Element[] Element.getChildren(java.lang.String name, Namespace ns)
          Get an array of all the children of this element that have the given name and belong to the given namespace.
 Element Node.getParent()
          Get the parent of this element / attribute.