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

gherkin.pickles.PickleStep Maven / Gradle / Ivy

There is a newer version: 30.0.4
Show newest version
package gherkin.pickles;

import java.util.List;

import static java.util.Collections.unmodifiableList;

public class PickleStep {
    private final String text;
    private final List arguments;
    private final List locations;

    public PickleStep(String text, List arguments, List locations) {
        this.text = text;
        this.arguments = unmodifiableList(arguments);
        this.locations = unmodifiableList(locations);
    }

    public String getText() {
        return text;
    }

    public List getLocations() {
        return locations;
    }

    public List getArgument() {
        return arguments;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy