Blame view

SondesTable.java~ 543 Bytes
0498df6f   rsimonin   first commit
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
  import java.util.* ;
  
  public class SondesTable{
      Map< Sonde,Interrupteur> sondetointerrupteur = new HashMap< Sonde,Interrupteur>();
      Map<Interrupteur,Sonde> interrupteurtosonde = new HashMap<Interrupteur,Sonde>();
  
  	 
      public Interrupteur getInterrupteur(LazySonde sonde){
  	return sondetointerrupteur.get(sonde);
  	
  
      }
      
      public LazySonde getSonde(Interrupteur interrupteur,Composant cible, String entree){
  	return ;
      }
      public void resetSondes(){
  	for(
  	return ;
      }
      public void clear(){
  	return ;
      }
  
      
  }