Examples of PhpExportService


Examples of dsk.php_export.core.service.PhpExportService

public class CodeViewModule extends AbstractModule {
  @Override
  protected void configure() {
    Map<String, ClassExport> exports = new HashMap<String, ClassExport>();
    exports.put(Constants.PHP, new PhpExportService());
    exports.put(Constants.JAVA, new JavaExportService());

    this.bind(new TypeLiteral<Map<String, ClassExport>>() {
    }).toInstance(exports);
    this.bind(SkeletonCodeTools.class).in(Scopes.SINGLETON);
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.