Package org.eclipse.osgi.internal.composite

Examples of org.eclipse.osgi.internal.composite.SurrogateImpl


    if ((bundledata.getType() & BundleData.TYPE_FRAGMENT) > 0)
      result = new BundleFragment(bundledata, framework);
    else if ((bundledata.getType() & BundleData.TYPE_COMPOSITEBUNDLE) > 0)
      result = new CompositeImpl(bundledata, framework);
    else if ((bundledata.getType() & BundleData.TYPE_SURROGATEBUNDLE) > 0)
      result = new SurrogateImpl(bundledata, framework);
    else
      result = new BundleHost(bundledata, framework);
    if (setBundle)
      bundledata.setBundle(result);
    return result;
View Full Code Here


    if ((bundledata.getType() & BundleData.TYPE_FRAGMENT) > 0)
      result = new BundleFragment(bundledata, framework);
    else if ((bundledata.getType() & BundleData.TYPE_COMPOSITEBUNDLE) > 0)
      result = new CompositeImpl(bundledata, framework);
    else if ((bundledata.getType() & BundleData.TYPE_SURROGATEBUNDLE) > 0)
      result = new SurrogateImpl(bundledata, framework);
    else
      result = new BundleHost(bundledata, framework);
    if (setBundle)
      bundledata.setBundle(result);
    return result;
View Full Code Here

TOP

Related Classes of org.eclipse.osgi.internal.composite.SurrogateImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.