org.uqbar.arena.tests.ObjectWithProperty 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
The newest version!
package org.uqbar.arena.tests;
import java.util.ArrayList;
import java.util.List;
import org.uqbar.commons.model.annotations.Observable;
@Observable
public class ObjectWithProperty {
private List personas = new ArrayList();
public List getPersonas() {
return personas;
}
public void setPersonas(List personas) {
this.personas = personas;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
private String nombre = "soy un texto!";
}