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

cucumber.runtime.Argument Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package cucumber.runtime;

public class Argument {
    private static final long serialVersionUID = 1L;

    private final Integer offset;
    private final String val;

    public Argument(Integer offset, String val) {
        this.offset = offset;
        this.val = val;
    }

    public String getVal() {
        return val;
    }

    public Integer getOffset() {
        return offset;
    }

    public String toString() {
        return getVal();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy