Uses of Interface
javax.tv.xlet.XletContext

Packages that use XletContext
javax.tv.graphics   
javax.tv.service.selection   
javax.tv.xlet   
org.dvb.io.ixc Provides support for inter-application communication. 
org.dvb.spi This package defines a central registry for all DVB Service Provider Interface (SPI) providers. 
 

Uses of XletContext in javax.tv.graphics
 

Methods in javax.tv.graphics with parameters of type XletContext
static Container TVContainer.getRootContainer(XletContext ctx)
          Get the parent container for an Xlet to put its AWT components in, if the Xlet has a graphical representation.
 

Uses of XletContext in javax.tv.service.selection
 

Methods in javax.tv.service.selection with parameters of type XletContext
abstract  ServiceContext ServiceContextFactory.getServiceContext(XletContext ctx)
          Reports the ServiceContext in which the Xlet corresponding to the specified XletContext is running.
 

Uses of XletContext in javax.tv.xlet
 

Methods in javax.tv.xlet with parameters of type XletContext
 void Xlet.initXlet(XletContext ctx)
          Signals the Xlet to initialize itself and enter the Paused state.
 

Uses of XletContext in org.dvb.io.ixc
 

Methods in org.dvb.io.ixc with parameters of type XletContext
static void IxcRegistry.bind(XletContext xc, String name, Remote obj)
          Exports an object under a given name in the namespace of an Xlet.
static String[] IxcRegistry.list(XletContext xc)
          Returns an array of string path objects available in the registry.
static Remote IxcRegistry.lookup(XletContext xc, String path)
          Returns a remote object previously exported by an Xlet that has not been destroyed.
static void IxcRegistry.rebind(XletContext xc, String name, Remote obj)
          Rebind the name to a new object in the context of an Xlet; replaces any existing binding.
static void IxcRegistry.unbind(XletContext xc, String name)
          Unbind the name.
 

Uses of XletContext in org.dvb.spi
 

Methods in org.dvb.spi that return XletContext
 XletContext XletBoundProvider.getBoundXletContext()
          A valid provider shall return a non-null value from at least one of the get...XletContext methods.