Package org.eclipse.sisu.peaberry.osgi

Examples of org.eclipse.sisu.peaberry.osgi.OSGiModule


   *
   * @param bundleContext current bundle context
   * @return OSGi specific Guice bindings
   */
  public static Module osgiModule(final BundleContext bundleContext) {
    return new OSGiModule(bundleContext);
  }
View Full Code Here


   *
   * @since 1.1
   */
  public static Module osgiModule(final BundleContext bundleContext,
      final ServiceRegistry... registries) {
    return new OSGiModule(bundleContext, registries);
  }
View Full Code Here

   * @return OSGi specific Guice bindings
   *
   * @since 1.3
   */
  public static Module osgiModule(final ServiceRegistry... registries) {
    return new OSGiModule(registries);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.sisu.peaberry.osgi.OSGiModule

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.