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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy