Blame view

#Not.java# 572 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
27
28
29
30
31
32
33
34
35
36
  /**
   *
   * @author Bernard.Carre@polytech-lille.fr
   */
  
  public class Not extends Porte {
  	//...
      protected Composant in;
  	
      public void setIn(Composant comp) {	
  	in = comp;		
      }
      public void probe(SondesTable tableSondes){
  	if(in instanceof Interrupteur){
  	    getSonde(in,in,
  	}
      }
      public String description(){
  	return getId() + " ||in: "+ in.getId();
      }
  
      
      public boolean getEtat() throws NonConnecteException {
  		
  	if (in == null) {
  			
  	    throw new NonConnecteException();
  			
  	} else {
  	    
  	    return !in.getEtat();
  			
  	}
      }
  		
  }