/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Metier; import java.util.ArrayList; public class StructureBibliotheque { int id; String nom; ArrayList<Armoire> armoires; public StructureBibliotheque(String nom) { this.nom = nom; } public ArrayList<Armoire> getArmoires() { return armoires; } public void setArmoires(ArrayList<Armoire> armoires) { this.armoires = armoires; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getNom() { return nom; } public void setNom(String nom) { this.nom = nom; } }