Uses of Class
org.osgi.framework.BundleException

Packages that use BundleException
org.eclipse.core.runtime.internal.adaptor   
org.eclipse.osgi.baseadaptor   
org.eclipse.osgi.baseadaptor.hooks   
org.eclipse.osgi.framework.adaptor   
org.eclipse.osgi.framework.internal.core   
org.eclipse.osgi.framework.util   
org.eclipse.osgi.service.resolver   
org.osgi.framework   
 

Uses of BundleException in org.eclipse.core.runtime.internal.adaptor
 

Methods in org.eclipse.core.runtime.internal.adaptor that throw BundleException
 StorageHook EclipseStorageHook.create(BaseData bundledata)
           
 void EclipseAdaptorHook.frameworkStart(BundleContext context)
           
 void EclipseErrorHandler.frameworkStart(BundleContext context)
           
 void EclipseLazyStarter.frameworkStart(BundleContext context)
           
 void EclipseLogHook.frameworkStart(BundleContext context)
           
 void EclipseAdaptorHook.frameworkStop(BundleContext context)
           
 void EclipseErrorHandler.frameworkStop(BundleContext context)
           
 void EclipseLazyStarter.frameworkStop(BundleContext context)
           
 void EclipseLogHook.frameworkStop(BundleContext context)
           
 java.util.Dictionary EclipseStorageHook.getGeneratedManifest()
           
 java.util.Dictionary EclipseStorageHook.getManifest(boolean firstLoad)
           
 void EclipseStorageHook.initialize(java.util.Dictionary manifest)
           
 

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.internal.core
 

Methods in org.eclipse.osgi.framework.internal.core that throw BundleException
protected  void BundleHost.attachFragment(BundleFragment fragment)
          Attaches a fragment to this BundleHost.
protected  void AbstractBundle.beginStateChange()
          This method marks the bundle's state as changing so that other calls to start/stop/suspend/update/uninstall can wait until the state change is complete.
protected static AbstractBundle AbstractBundle.createBundle(BundleData bundledata, Framework framework)
          Bundle object constructor.
 Bundle BundleContextImpl.installBundle(java.lang.String location)
          Install a bundle from a location.
 AbstractBundle Framework.installBundle(java.lang.String location)
          Install a bundle from a location.
 Bundle BundleContextImpl.installBundle(java.lang.String location, java.io.InputStream in)
          Install a bundle from an InputStream.
protected  AbstractBundle Framework.installBundle(java.lang.String location, java.io.InputStream in)
          Install a bundle from an InputStream.
protected  AbstractBundle Framework.installWorker(java.lang.String location, java.security.PrivilegedExceptionAction action)
          Worker method to install a bundle.
protected  AbstractBundle Framework.installWorkerPrivileged(java.lang.String location, java.net.URLConnection source, java.security.AccessControlContext callerContext)
          Worker method to install a bundle.
protected  BundleActivator AbstractBundle.loadBundleActivator()
          Load and instantiate bundle's BundleActivator class
protected  void AbstractBundle.resume()
          Start this bundle w/o marking is persistently started.
protected  void BundleContextImpl.start()
          Call bundle's BundleActivator.start() This method is called by Bundle.startWorker to start the bundle.
 void AbstractBundle.start()
          Start this bundle.
 void AbstractBundle.start(int options)
           
protected  void BundleContextImpl.startActivator(BundleActivator bundleActivator)
          Calls the start method of a BundleActivator.
protected  void BundleFragment.startWorker(int options)
          Internal worker to start a bundle.
protected  void BundleHost.startWorker(int options)
          Internal worker to start a bundle.
protected abstract  void AbstractBundle.startWorker(int options)
          Internal worker to start a bundle.
protected  void BundleContextImpl.stop()
          Call bundle's BundleActivator.stop() This method is called by Bundle.stopWorker to stop the bundle.
 void AbstractBundle.stop()
          Stop this bundle.
 void AbstractBundle.stop(int options)
           
protected  void BundleFragment.stopWorker(int options)
          Internal worker to stop a bundle.
protected  void BundleHost.stopWorker(int options)
          Internal worker to stop a bundle.
protected abstract  void AbstractBundle.stopWorker(int options)
          Internal worker to stop a bundle.
protected  void AbstractBundle.suspend(boolean lock)
          Stop this bundle w/o marking is persistently stopped.
 void SystemBundle.uninstall()
          Uninstall this bundle.
 void AbstractBundle.uninstall()
          Uninstall this bundle.
protected  void AbstractBundle.uninstallWorker(java.security.PrivilegedExceptionAction action)
          Uninstall worker.
protected  void AbstractBundle.uninstallWorkerPrivileged()
          Uninstall worker.
 void AbstractBundle.update()
          Update this bundle.
 void AbstractBundle.update(java.io.InputStream in)
          Update this bundle from an InputStream.
protected  void AbstractBundle.updateWorker(java.security.PrivilegedExceptionAction action)
          Update worker.
protected  void AbstractBundle.updateWorkerPrivileged(java.net.URLConnection source, java.security.AccessControlContext callerContext)
          Update worker.
protected  boolean Framework.verifyExecutionEnvironment(java.util.Dictionary manifest)
          Verifies that the framework supports one of the required Execution Environments
 

Constructors in org.eclipse.osgi.framework.internal.core that throw BundleException
BundleFragment(BundleData bundledata, Framework framework)
           
BundleHost(BundleData bundledata, Framework framework)
           
BundleLoader(BundleHost bundle, BundleLoaderProxy proxy)
          BundleLoader runtime constructor.
SystemBundle(Framework framework)
          Private SystemBundle object constructor.
SystemBundleLoader(BundleHost bundle, BundleLoaderProxy proxy)
           
 

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)
           
 

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.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.