/* constructors */

        public DataStructureItem()
        {
            props = new Hashtable();
            // init actions
            this.ResetMethod  = this.DefaultResetMethod;
            this.UpdateMethod = this.DefaultUpdateMethod;
        }
 public void RegisterCompletionDelegate(UpdateFunctionDelegate dele)
 {
     updateFunctionDelegates.Add(dele);
 }