Rev 96 | Blame | Compare with Previous | Last modification | View Log | RSS feed
// Handle passed to and from MemManager
public class Handle {
private long address; // Location of block in memory pool
public Handle(long addr) {
this.address = addr;
}
public long getAddress() {
return address;
}
public void setAddress(int address) {
this.address = address;
}
}