32 lines
663 B
Java
32 lines
663 B
Java
package it.acxent.art;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class StatoUsatoCR extends CRAdapter {
|
|
private long id_statoUsato;
|
|
|
|
private String sigla;
|
|
|
|
public StatoUsatoCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public StatoUsatoCR() {}
|
|
|
|
public void setId_statoUsato(long newId_statoUsato) {
|
|
this.id_statoUsato = newId_statoUsato;
|
|
}
|
|
|
|
public void setSigla(String newSigla) {
|
|
this.sigla = newSigla;
|
|
}
|
|
|
|
public long getId_statoUsato() {
|
|
return this.id_statoUsato;
|
|
}
|
|
|
|
public String getSigla() {
|
|
return (this.sigla == null) ? "" : this.sigla.trim();
|
|
}
|
|
}
|