package ma.library; // Generated by MyEclipse - Hibernate Tools import java.util.Set; /** * Dept generated by MyEclipse - Hibernate Tools */ public class Dept extends AbstractDept implements java.io.Serializable { // Constructors /** default constructor */ public Dept() { } /** minimal constructor */ public Dept(String libelle) { super(libelle); } /** full constructor */ public Dept(String libelle, Set personne) { super(libelle, personne); } }