SondesTable.java~ 543 Bytes
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 ;
    }

    
}