devutility.internal.test.data.model.ReferencedModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Some utilities for Java development
package devutility.internal.test.data.model;
public class ReferencedModel {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}