ie.curiositysoftware.dto.StringObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testmodeller Show documentation
Show all versions of testmodeller Show documentation
Java client library for the Curiosity Software product TestModeller
package ie.curiositysoftware.dto;
public class StringObject {
public String data;
public StringObject(final String data) {
this.data = data;
}
public StringObject() {
}
public String getData() {
return this.data;
}
public void setData(final String data) {
this.data = data;
}
}