All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.selckin.ws.util.java2php.Main Maven / Gradle / Ivy

package be.selckin.ws.util.java2php;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class Main {

    public static void main(String[] args) {
        File target = new File(args[0]);
        target.getParentFile().mkdirs();
        List services = new ArrayList<>();
        for (int i = 1; i < args.length; i++) {
            services.add(args[i]);
        }
        try {
            new JavaToPHP().generate(target, services);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy