org.uqbar.arena.tests.nestedProperties.Nested Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arena-examples Show documentation
Show all versions of arena-examples Show documentation
Ejemplos básicos y tests del framework Arena
package org.uqbar.arena.tests.nestedProperties;
import org.uqbar.commons.model.annotations.Observable;
@Observable
public class Nested {
private String second;
public Nested(String second) {
this.second = second;
}
public String getSecond() {
return second;
}
public void setSecond(String second) {
this.second = second;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy