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