Subversion Repositories Code-Repo

Rev

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

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