Subversion Repositories Code-Repo

Rev

Rev 93 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
93 Kevin 1
// Handle passed to and from MemManager
2
public class Handle {
3
	private int address; // Location of block in memory pool
4
 
5
	public Handle(int addr) {
6
		this.address = addr;
7
	}
8
 
9
	public int getAddress() {
10
		return address;
11
	}
12
 
13
	public void setAddress(int address) {
14
		this.address = address;
15
	}
16
 
17
}