Uses of Class
org.osgi.framework.BundleException

Packages that use BundleException
org.eclipse.osgi.baseadaptor   
org.eclipse.osgi.baseadaptor.hooks   
org.eclipse.osgi.framework.adaptor   
org.eclipse.osgi.framework.util   
org.eclipse.osgi.service.resolver   
org.eclipse.osgi.util Provides utility classes for NLS support and bundle manifest header parsing. 
org.osgi.framework   
 

Uses of BundleException in org.eclipse.osgi.baseadaptor
 

Methods in org.eclipse.osgi.baseadaptor that throw BundleException
 BundleData BaseAdaptor.createSystemBundleData()
           
 void BaseAdaptor.frameworkStart(BundleContext fwContext)
          This method calls all the configured adaptor hook AdaptorHook.frameworkStart(BundleContext) methods.
 void BaseAdaptor.frameworkStop(BundleContext fwContext)
          This method calls all the configured adaptor hook AdaptorHook.frameworkStop(BundleContext) methods.
 java.lang.String[] BaseData.getClassPath()
           
 java.util.Dictionary BaseData.getManifest()
           
 void BaseData.installNativeCode(java.lang.String[] nativepaths)
           
 java.net.URLConnection BaseAdaptor.mapLocationToURLConnection(java.lang.String location)
          This method will call each configured adaptor hook AdaptorHook.mapLocationToURLConnection(String) method until one returns a non-null value.
 

Uses of BundleException in org.eclipse.osgi.baseadaptor.hooks
 

Methods in org.eclipse.osgi.baseadaptor.hooks that throw BundleException
 StorageHook StorageHook.create(BaseData bundledata)
          Creates an uninitialized storage hook for the specified bundledata.
 void AdaptorHook.frameworkStart(BundleContext context)
          Gets called by the adaptor during FrameworkAdaptor.frameworkStart(BundleContext).
 void AdaptorHook.frameworkStop(BundleContext context)
          Gets called by the adaptor during FrameworkAdaptor.frameworkStop(BundleContext).
 java.util.Dictionary StorageHook.getManifest(boolean firstLoad)
          Returns the manifest for the data in this storage hook, or null if this hook does not provide the manifest.
 void StorageHook.initialize(java.util.Dictionary manifest)
          Initializes this storage hook with the content of the specified bundle manifest.
 

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

Methods in org.eclipse.osgi.framework.adaptor that throw BundleException
 BundleData BundleOperation.begin()
          Begin the operation on the bundle (install, update, uninstall).
 void BundleOperation.commit(boolean postpone)
          Commit the operation performed.
 BundleData FrameworkAdaptor.createSystemBundleData()
          Creates a BundleData object for the System Bundle.
 void FrameworkAdaptor.frameworkStart(BundleContext context)
          The framework will call this method after the System BundleActivator.start(BundleContext) has been called.
 void FrameworkAdaptor.frameworkStop(BundleContext context)
          The framework will call this method before the System BundleActivator.stop(BundleContext) has been called.
 java.lang.String[] BundleData.getClassPath()
          Returns the Bundle-ClassPath for this BundleData as specified in the bundle manifest file.
 java.util.Dictionary BundleData.getManifest()
          Return the Dictionary of manifest headers for the BundleData.
 void BundleData.installNativeCode(java.lang.String[] nativepaths)
          Installs the native code paths for this BundleData.
 java.net.URLConnection FrameworkAdaptor.mapLocationToURLConnection(java.lang.String location)
          Map a location to a URLConnection.
 void BundleOperation.undo()
          Undo the change to persistent storage.
 

Uses of BundleException in org.eclipse.osgi.framework.util
 

Methods in org.eclipse.osgi.framework.util that throw BundleException
static Headers Headers.parseManifest(java.io.InputStream in)
           
 void SecureAction.start(Bundle bundle)
          Starts a bundle
 void SecureAction.start(Bundle bundle, int options)
          Starts a bundle.
 

Uses of BundleException in org.eclipse.osgi.service.resolver
 

Methods in org.eclipse.osgi.service.resolver that throw BundleException
 void PlatformAdmin.commit(State state)
          Commit the differences between the current state and the given state.
 StateDelta State.compare(State baseState)
          Returns a delta describing the differences between this state and the given state.
 BundleDescription StateObjectFactory.createBundleDescription(java.util.Dictionary manifest, java.lang.String location, long id)
          Deprecated. use StateObjectFactory.createBundleDescription(State, Dictionary, String, long)
 BundleDescription StateObjectFactory.createBundleDescription(State state, java.util.Dictionary manifest, java.lang.String location, long id)
          Returns a bundle description based on the information in the supplied manifest dictionary.
 

Uses of BundleException in org.eclipse.osgi.util
 

Methods in org.eclipse.osgi.util that throw BundleException
static java.util.Map ManifestElement.parseBundleManifest(java.io.InputStream manifest, java.util.Map headers)
          Parses a bundle manifest and puts the header/value pairs into the supplied Map.
static ManifestElement[] ManifestElement.parseHeader(java.lang.String header, java.lang.String value)
          Parses a manifest header value into an array of ManifestElements.
 

Uses of BundleException in org.osgi.framework
 

Methods in org.osgi.framework that throw BundleException
 Bundle BundleContext.installBundle(java.lang.String location)
          Installs a bundle from the specified location string.
 Bundle BundleContext.installBundle(java.lang.String location, java.io.InputStream input)
          Installs a bundle from the specified InputStream object.
 void Bundle.start()
          Starts this bundle with no options.
 void Bundle.start(int options)
          Starts this bundle.
 void Bundle.stop()
          Stops this bundle with no options.
 void Bundle.stop(int options)
          Stops this bundle.
 void Bundle.uninstall()
          Uninstalls this bundle.
 void Bundle.update()
          Updates this bundle.
 void Bundle.update(java.io.InputStream in)
          Updates this bundle from an InputStream.