forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
732 B
43 lines
732 B
/*
|
|
* Estado.java
|
|
*
|
|
* Created on November 29, 2007, 10:01 AM
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package beans;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
*
|
|
* @author lluis
|
|
*/
|
|
public class Estado implements Serializable
|
|
{
|
|
private Integer estado;
|
|
private String descricao;
|
|
/** Creates a new instance of Estado */
|
|
public Estado() {
|
|
}
|
|
|
|
public Integer getEstado() {
|
|
return estado;
|
|
}
|
|
|
|
public void setEstado(Integer estado) {
|
|
this.estado = estado;
|
|
}
|
|
|
|
public String getDescricao() {
|
|
return descricao;
|
|
}
|
|
|
|
public void setDescricao(String descricao) {
|
|
this.descricao = descricao;
|
|
}
|
|
|
|
}
|