public void Dispose()
 {
     _theObject = null;
 }
            internal static _Briefcase GetObject(MfsOperations parent)
            {
                if (_theObject == null) {
                    _theObject = new _Briefcase (parent);
                }

                return _theObject;
            }
Example #3
0
 private void LoadSubobjects()
 {
     FileObj = _File.GetObject (this);
     DocumentObj = _Document.GetObject (this);
     AspectObj = _Aspect.GetObject (this);
     AspectGroupObj = _AspectGroup.GetObject (this);
     BriefcaseObj = _Briefcase.GetObject (this);
     CollectionObj = _Collection.GetObject (this);
     NoteObj = _Note.GetObject (this);
     UrlObj = _Url.GetObject (this);
     VCardObj = _VCard.GetObject (this);
     SfdObj = _Sfd.GetObject (this);
     RelationObj = _Relation.GetObject (this);
     ArchiveObj = _Archive.GetObject (this);
     BookmarkObj = _Bookmark.GetObject (this);
     IndexObj = _Index.GetObject (this);
     MasterPasswordObj = _MasterPassword.GetObject (this);
     CredentialsObj = _Credentials.GetObject (this);
 }