1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
package termeBean;
/**
* AbstractTerme entity provides the base persistence definition of the Terme
* entity. @author MyEclipse Persistence Tools
*/
public abstract class AbstractTerme implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 1L;
private Integer idTerme;
private String idLangue;
private Integer idThesaurus;
private String descripteur;
private String noteApplication;
private String noteHistorique;
private String type;
private Integer idMt;
private String test;
// Constructors
/** default constructor */
public AbstractTerme() {
}
/** minimal constructor */
public AbstractTerme(Integer idTerme, String idLangue, Integer idThesaurus) {
this.idTerme = idTerme;
this.idLangue = idLangue;
this.idThesaurus = idThesaurus;
}
/** full constructor */
public AbstractTerme(Integer idTerme, String idLangue, Integer idThesaurus,
String descripteur, String noteApplication, String noteHistorique,
String type, Integer idMt, String test) {
this.idTerme = idTerme;
this.idLangue = idLangue;
this.idThesaurus = idThesaurus;
this.descripteur = descripteur;
this.noteApplication = noteApplication;
this.noteHistorique = noteHistorique;
this.type = type;
this.idMt = idMt;
this.test = test;
}
// Property accessors
public Integer getIdTerme() {
return this.idTerme;
}
public void setIdTerme(Integer idTerme) {
this.idTerme = idTerme;
}
public String getIdLangue() {
return this.idLangue;
}
public void setIdLangue(String idLangue) {
this.idLangue = idLangue;
}
public Integer getIdThesaurus() {
return this.idThesaurus;
}
public void setIdThesaurus(Integer idThesaurus) {
this.idThesaurus = idThesaurus;
}
public String getDescripteur() {
return this.descripteur;
}
public void setDescripteur(String descripteur) {
this.descripteur = descripteur;
}
public String getNoteApplication() {
return this.noteApplication;
}
public void setNoteApplication(String noteApplication) {
this.noteApplication = noteApplication;
}
public String getNoteHistorique() {
return this.noteHistorique;
}
public void setNoteHistorique(String noteHistorique) {
this.noteHistorique = noteHistorique;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getIdMt() {
return this.idMt;
}
public void setIdMt(Integer idMt) {
this.idMt = idMt;
}
public String getTest() {
return this.test;
}
public void setTest(String test) {
this.test = test;
} |
Partager