Blame view

Vanne.java~ 515 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
  /**
   *
   * @author Bernard.Carre@polytech-lille.fr
   */
  
  public class Vanne extends Composant {
  	//...
  
      protected Composant in;
  	
      public void setIn(Composant comp) {	
  	in = comp;	
      }
  
      public String description(){
  	String s1 ="non connecté";
  	if(in!=null){s1=in.getId();}
  	return getId() + " ||in:  " +s1;
      }
  
      
      public boolean getEtat() throws NonConnecteException {
  		
  	if (in == null) {
  			
  	    throw new NonConnecteException();
  			
  	} else {
  			
  	    return in.getEtat();
  			
  	}
      }	
  }