// class representing the super block.

class SuperBlock 
{
  int size;            // # of blocks in the file system
  int iSize;           // # of index blocks in the file system
  int freeList;        // first block of the free list

  public String toString () 
  {
    return "SUPERBLOCK:\n" + "Size: " + size + "  Isize: " + iSize + 
           "  freeList: " + freeList;
  }
}
