logo

const class

haven::ObjTable

sys::Obj
  haven::ObjTable
//
// Copyright (c) 2008, John Sublett
// Licensed under the Academic Free License version 3.0
//
// History:
//   29 Mar 08  John Sublett  Creation
//

**
** ObjTable is a table of objects in the haven database.
**
const class ObjTable
{
  new make(HavenService haven, Type objType)
  {
    this.haven = haven
    this.objType = objType.toImmutable
  }

//////////////////////////////////////////////////////////////////////////
// Fields
//////////////////////////////////////////////////////////////////////////

  **
  ** The haven instance that owns this table.
  **
  const HavenService haven
  
  **
  ** The type of the objects in this table.
  **
  const Type objType

}

More Info