Examples of SvgoProcessor


Examples of de.matrixweb.smaller.svgo.SvgoProcessor

    this.processor037 = register(context, "0.3.7", 37);
  }

  private SvgoProcessor register(final BundleContext context,
      final String version, final int ranking) {
    final SvgoProcessor processor = new SvgoProcessor(version);
    final Hashtable<String, Object> props = new Hashtable<String, Object>();
    props.put("name", "svgo");
    props.put("version", version);
    props.put(Constants.SERVICE_RANKING, Integer.valueOf(ranking));
    context.registerService(Processor.class, processor, props);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.