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

pickles.PickleStep Maven / Gradle / Ivy

The newest version!
package pickles;

import java.util.List;

import static java.util.Arrays.asList;

public class PickleStep {
    private final String text;
    private final PickleArgument argument;
    private final List source;

    public PickleStep(String text, PickleArgument argument, PickleLocation... source) {
        this.text = text;
        this.argument = argument;
        this.source = asList(source);
    }

    public String getText() {
        return text;
    }

    public List getSource() {
        return source;
    }

    public PickleArgument getArgument() {
        return argument;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy