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

com.github.methylene.args.RawArgument Maven / Gradle / Ivy

package com.github.methylene.args;

public class RawArgument {

  private final String arg;
  private final int pos;

  public RawArgument(String arg, int pos) {
    this.arg = arg;
    this.pos = pos;
  }

  public String getArg() {
    return arg;
  }

  public int getPos() {
    return pos;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy