org.uqbar.arena.tests.nestedCombos.Province 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.nestedCombos;
import org.uqbar.commons.model.annotations.Observable;
import org.uqbar.commons.model.annotations.Transactional;
@Observable
@Transactional
public class Province {
private String name;
private Boolean pretty;
public Province(String name) {
this.name = name;
this.pretty = new Boolean(true);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
Boolean getPretty() {
return pretty;
}
void setPretty(Boolean pretty) {
this.pretty = pretty;
}
}