/* * 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 Armoire { private String charArmoire; private int id; ArrayList<Etagere> etageres = new ArrayList(); public int getId() { return id; } public void setId(int id) { this.id = id; } public String getCharArmoire() { return charArmoire; } public void setCharArmoire(String charArmoire) { this.charArmoire = charArmoire; } public ArrayList<Etagere> getEtageres() { return etageres; } public void setEtageres(ArrayList<Etagere> etageres) { this.etageres = etageres; } public Armoire(String charArmoire) { this.charArmoire = charArmoire; } }