Package org.eclipse.ecf.tutorial.osgi.services.discovery

Examples of org.eclipse.ecf.tutorial.osgi.services.discovery.ServicePublicationHandler


   * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
   */
  public void start(BundleContext ctxt) throws Exception {
    plugin = this;
    this.context = ctxt;
    servicePublicationHandler = new ServicePublicationHandler();

    servicePublicationTracker = new ServiceTracker(context,
        ServicePublication.class.getName(), servicePublicationHandler);
    servicePublicationTracker.open();

View Full Code Here

TOP

Related Classes of org.eclipse.ecf.tutorial.osgi.services.discovery.ServicePublicationHandler

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.