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
| package gestdepartements.persistance.jdo;
// Generated by MyEclipse - Hibernate Tools
/**
* Departement generated by MyEclipse - Hibernate Tools
*/
public class Departement extends AbstractDepartement implements java.io.Serializable {
// Constructors
/**
*
*/
private static final long serialVersionUID = 1L;
/** default constructor */
public Departement() {
}
/** full constructor */
public Departement(String nomdepartement, Float budgetdepartement) {
super(nomdepartement, budgetdepartement);
}
} |