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

be.selckin.ws.util.java2php.php.Operation Maven / Gradle / Ivy

package be.selckin.ws.util.java2php.php;

import java.util.List;

public class Operation {
    private final String name;
    private final List arguments;
    private final TypeHint typeHint;

    public Operation(String name, TypeHint typeHint, List arguments) {
        this.name = name;
        this.typeHint = typeHint;
        this.arguments = arguments;
    }

    public String getName() {
        return name;
    }

    public TypeHint getTypeHint() {
        return typeHint;
    }

    public List getArguments() {
        return arguments;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy