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

com.github.cukedoctor.api.model.Match Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package com.github.cukedoctor.api.model;

import java.util.List;

public class Match {

	private String location;
	private List arguments;

	public Match() {
	}

	public Match(String location) {
		this.location = location;
	}

	public List getArguments() {
		return arguments;
	}

	public String getLocation() {
		return location;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy