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