Package test_rb

Examples of test_rb.C


public class Activator
  implements BundleActivator
{
  public void start(BundleContext bc)
  {
    C c = new C();
    D d = new D();
    test_rb.D.D dd = new test_rb.D.D();

    Dictionary cDict = new Hashtable();
    cDict.put("test_rb","C.C");
    cDict.put("toString",c.toString());
    bc.registerService(Object.class.getName(), c, cDict);

    Dictionary dDict = new Hashtable();
    dDict.put("test_rb","C.D");
    dDict.put("toString",d.toString());
View Full Code Here

TOP

Related Classes of test_rb.C

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.