this is a sequencing state file initialized with tree information from the imsmanifest.xml file. It is a serialized org.adl.sequencer.SeqActivityTree object. One of each of these initialized object files is persisted in SampleRTE131Files/(userid)/(courseid) directory, always with the same name (serialize.obj)

NOTE: this page is currently under construction


   /**
    * This is last activity experienced by the student prior to a SuspendAll
    * sequencing request.<br><br>
    * Defined in IMS SS AM
    *@hibernate.property
    */
       private SeqActivity mSuspendAll = null;

   /**
    * This is an internal 'quick' reference map of the activity tree's nodes
    * WRT hibernate perisistence: use buildActivityMap() after retrieval
    */
       private Hashtable mActivityMap = null;

   /**
    * This is the set of global objective IDs used in this activity tree.
    *@hibernate.property
    */
       private Vector mObjSet = null;

   /**
    * This is a map of activities that read from each of the global shared
    * objectives.
    *@hibernate.property
    */
       private Hashtable mObjMap = null;

   /**
    * This indicates if the global objective IDs have been determined for this 
    * tree.
    *@hibernate.property
    */
       private boolean mObjScan = false;