32 lines
682 B
Java
32 lines
682 B
Java
package it.acxent.anag;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class AspettoCR extends CRAdapter {
|
|
private long id_aspetto;
|
|
|
|
private String descrizione;
|
|
|
|
public AspettoCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public AspettoCR() {}
|
|
|
|
public void setId_aspetto(long newId_aspetto) {
|
|
this.id_aspetto = newId_aspetto;
|
|
}
|
|
|
|
public void setDescrizione(String newDescrizione) {
|
|
this.descrizione = newDescrizione;
|
|
}
|
|
|
|
public long getId_aspetto() {
|
|
return this.id_aspetto;
|
|
}
|
|
|
|
public String getDescrizione() {
|
|
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
|
}
|
|
}
|