Edge.java 624 Bytes
Newer Older
Juon Kawakami's avatar
init  
Juon Kawakami committed
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
package firesimulator.world;

/**
 * @author tn
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public abstract class Edge extends StationaryObject {

	int headID;
	int tailID;
	int Length;

	public Edge(int id) {
		super(id);
	}

	public void setHead(int id){
		headID=id;
	}
	
	public void setTail(int id){
		tailID=id;
	}
	
	public void setLength(int length){
		this.Length=length;
	}

	protected int getTailID() {	
		return tailID;
	}

	protected int getHeadID() {
		return headID;
	}
	
	protected int length() {
		return Length;
	}

}