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