32 lines
712 B
Java
32 lines
712 B
Java
package it.acxent.anag;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class OttoxmilleCR extends CRAdapter {
|
|
private long id_ottoxmille;
|
|
|
|
private String descrizione;
|
|
|
|
public OttoxmilleCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public OttoxmilleCR() {}
|
|
|
|
public void setId_ottoxmille(long newId_ottoxmille) {
|
|
this.id_ottoxmille = newId_ottoxmille;
|
|
}
|
|
|
|
public void setDescrizione(String newDescrizione) {
|
|
this.descrizione = newDescrizione;
|
|
}
|
|
|
|
public long getId_ottoxmille() {
|
|
return this.id_ottoxmille;
|
|
}
|
|
|
|
public String getDescrizione() {
|
|
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
|
}
|
|
}
|