public class Lieu { String nom; Boolean deposable; Boolean depart; Boolean fin; List personnes; List descriptions; List objets; List connaissances; public Lieu( String nom, Boolean deposable, Boolean depart, Boolean fin, List personnes, List descriptions, List objets, List connaissances) { this.nom = nom; this.deposable = deposable; this.depart = depart; this.fin = fin; this.personnes = personnes; this.descriptions = descriptions; this.objets = objets; this.connaissances = connaissances; } }