Subversion Repositories Code-Repo

Rev

Go to most recent revision | Blame | 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;
        }

}