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

net.karneim.pojobuilder.model.ArgumentM Maven / Gradle / Ivy

Go to download

The PojoBuilder Generator is a Java 6 compliant annotation processor that generates a fluent builder class for POJOs (Plain Old Java Object)

There is a newer version: 4.3.0
Show newest version
package net.karneim.pojobuilder.model;

public class ArgumentM {
  private final PropertyM property;
  private final int pos;

  public ArgumentM(PropertyM property, int pos) {
    this.property = property;
    this.pos = pos;
  }

  public PropertyM getProperty() {
    return property;
  }

  public int getPos() {
    return pos;
  }

  @Override
  public String toString() {
    return "ArgumentM [property=" + property + ", pos=" + pos + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy