Class Page

java.lang.Object
  extended by Page

public class Page
extends java.lang.Object

Class to hold a page's worth of data in memory.

Author:
Dave Musicant, with considerable material reused from the UW-Madison Minibase project

Field Summary
 byte[] data
          Array to actually contain page data.
static int PAGESIZE
          Size of a page in bytes.
 
Constructor Summary
Page()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PAGESIZE

public static final int PAGESIZE
Size of a page in bytes.

See Also:
Constant Field Values

data

public byte[] data
Array to actually contain page data.

Constructor Detail

Page

public Page()