net.karneim.pojobuilder.model.ArgumentM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pojobuilder Show documentation
Show all versions of pojobuilder Show documentation
The PojoBuilder Generator is a Java 6 compliant annotation processor that generates a fluent builder class for POJOs (Plain Old Java Object)
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 + "]";
}
}