Uses of Interface
org.eclipse.osgi.framework.adaptor.BundleData

Packages that use BundleData
org.eclipse.osgi.baseadaptor   
org.eclipse.osgi.baseadaptor.loader   
org.eclipse.osgi.framework.adaptor   
 

Uses of BundleData in org.eclipse.osgi.baseadaptor
 

Classes in org.eclipse.osgi.baseadaptor that implement BundleData
 class BaseData
          The BundleData implementation used by the BaseAdaptor.
 

Methods in org.eclipse.osgi.baseadaptor that return BundleData
 BundleData BaseAdaptor.createSystemBundleData()
           
 BundleData[] BaseAdaptor.getInstalledBundles()
           
 

Methods in org.eclipse.osgi.baseadaptor with parameters of type BundleData
 BundleOperation BaseAdaptor.uninstallBundle(BundleData bundledata)
           
 BundleOperation BaseAdaptor.updateBundle(BundleData bundledata, java.net.URLConnection source)
           
 

Uses of BundleData in org.eclipse.osgi.baseadaptor.loader
 

Methods in org.eclipse.osgi.baseadaptor.loader with parameters of type BundleData
 void ClasspathManager.attachFragment(BundleData sourcedata, java.security.ProtectionDomain sourcedomain, java.lang.String[] sourceclasspath)
          Attaches the specified sourcedata, sourcedomain and sourceclasspath to this classpath manager
 

Uses of BundleData in org.eclipse.osgi.framework.adaptor
 

Methods in org.eclipse.osgi.framework.adaptor that return BundleData
 BundleData BundleOperation.begin()
          Begin the operation on the bundle (install, update, uninstall).
 BundleData FrameworkAdaptor.createSystemBundleData()
          Creates a BundleData object for the System Bundle.
 BundleData[] FrameworkAdaptor.getInstalledBundles()
          Return a list of the installed bundles.
 

Methods in org.eclipse.osgi.framework.adaptor with parameters of type BundleData
 void BundleClassLoader.attachFragment(BundleData bundledata, java.security.ProtectionDomain domain, java.lang.String[] classpath)
          Attaches the BundleData for a fragment to this BundleClassLoader.
 java.lang.Class ClassLoaderDelegateHook.postFindClass(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate.findClass(String) method after delegating to the resolved constraints and local bundle for a class load.
 java.lang.String ClassLoaderDelegateHook.postFindLibrary(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate after normal delegation.
 java.net.URL ClassLoaderDelegateHook.postFindResource(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate after delegating to the resolved constraints and local bundle for a resource load.
 java.util.Enumeration ClassLoaderDelegateHook.postFindResources(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate after delegating to the resolved constraints and local bundle for a resource load.
 java.lang.Class ClassLoaderDelegateHook.preFindClass(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate.findClass(String) method before delegating to the resolved constraints and local bundle for a class load.
 java.lang.String ClassLoaderDelegateHook.preFindLibrary(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate before normal delegation.
 java.net.URL ClassLoaderDelegateHook.preFindResource(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a #findResource(String) before delegating to the resolved constraints and local bundle for a resource load.
 java.util.Enumeration ClassLoaderDelegateHook.preFindResources(java.lang.String name, BundleClassLoader classLoader, BundleData data)
          Called by a ClassLoaderDelegate before delegating to the resolved constraints and local bundle for a resource load.
 BundleOperation FrameworkAdaptor.uninstallBundle(BundleData bundledata)
          Prepare to uninstall a bundle.
 BundleOperation FrameworkAdaptor.updateBundle(BundleData bundledata, java.net.URLConnection source)
          Prepare to update a bundle from a URLConnection.