Blame view

tp5_interfaces/tpBib/Bibliotheque.java 1.67 KB
49443da5   Vincent Benoist   tp avance
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  import java.util.*;
  
  public class Bibliotheque {
  
  //variables d'instances
  	protected Map<String,Ouvrage> ouvrages = new TreeMap<String,Ouvrage>();
      static final int date = 20180518;
  	
  //methodes a programmer	 
  	public void add(String code, Ouvrage o){
          ouvrages.put(code,o);
  	
  	}
      
  	
  	public int totalEmprunts(){
          int total = 0;
                
          for (Map.Entry<String, Ouvrage> o: ouvrages.entrySet()) {
              Ouvrage ouvrage = o.getValue();
                total += ouvrage.compteur;
          }
         
         return total;
      
      }
  
  	public void listing(){
  	  for (Map.Entry<String, Ouvrage> o: ouvrages.entrySet()) {
              Ouvrage ouvrage = o.getValue();
              System.out.println(""+ ouvrage.toString());
          }
  	}
  
  	public void emprunter(String code)throws OuvrageInconnuException,NonDisponibleException,NonDispoException{
          try {
          Revue revue = (Revue) ouvrages.get(code);
          if(revue == null){
              throw new OuvrageInconnuException();
          }
          revue.emprunter(date);
          }catch(ClassCastException e){
              //e.printStackTrace();
              Ouvrage ouvrage = ouvrages.get(code);
              if(ouvrage == null){
                  throw new OuvrageInconnuException();
              }
              ouvrage.emprunter();
          }
          
          
      }
      
  	public void retourner(String code)throws OuvrageInconnuException{
          Ouvrage ouvrage = ouvrages.get(code);
          if(ouvrage == null){
              throw new OuvrageInconnuException();
          }
          ouvrage.retourner();
  
      }
      
      public TreeMap<String,Ouvrage> getOuvrage(){
          Arrays.sort(ouvrages, new ComparateurOuvrage());
      }
      
  
  }