Package de.matrixweb.smaller.sweetjs

Examples of de.matrixweb.smaller.sweetjs.SweetjsProcessor


    this.processor025 = register(context, "0.2.5", 25);
  }

  private SweetjsProcessor register(final BundleContext context,
      final String version, final int ranking) {
    final SweetjsProcessor processor = new SweetjsProcessor(version);
    final Hashtable<String, Object> props = new Hashtable<String, Object>();
    props.put("name", "sweetjs");
    props.put("version", version);
    props.put(Constants.SERVICE_RANKING, Integer.valueOf(ranking));
    context.registerService(Processor.class, processor, props);
View Full Code Here

TOP

Related Classes of de.matrixweb.smaller.sweetjs.SweetjsProcessor

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.