using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.ObjectModels.UEPackage { public class UEPackageObjectModel : ObjectModel { private static ObjectModelReference _omr = null; protected override ObjectModelReference MakeReferenceInternal() { if (_omr == null) { _omr = base.MakeReferenceInternal(); _omr.Title = "Universal Editor Package"; _omr.Path = new string[] { "Extensibility" }; } return _omr; } private Association.AssociationCollection mvarAssociations = new Association.AssociationCollection(); /// /// The s provided by this package. /// public Association.AssociationCollection Associations { get { return mvarAssociations; } } private ObjectModelReference.ObjectModelReferenceCollection mvarObjectModels = new ObjectModelReference.ObjectModelReferenceCollection(); /// /// The s provided by this package. /// public ObjectModelReference.ObjectModelReferenceCollection ObjectModels { get { return mvarObjectModels; } } private DataFormatReference.DataFormatReferenceCollection mvarDataFormats = new DataFormatReference.DataFormatReferenceCollection(); /// /// The s provided by this package. /// public DataFormatReference.DataFormatReferenceCollection DataFormats { get { return mvarDataFormats; } } private ProjectType.ProjectTypeCollection mvarProjectTypes = new ProjectType.ProjectTypeCollection(); /// /// The s provided by this package. /// public ProjectType.ProjectTypeCollection ProjectTypes { get { return mvarProjectTypes; } } private DocumentTemplate.DocumentTemplateCollection mvarDocumentTemplates = new DocumentTemplate.DocumentTemplateCollection(); public DocumentTemplate.DocumentTemplateCollection DocumentTemplates { get { return mvarDocumentTemplates; } } private ProjectTemplate.ProjectTemplateCollection mvarProjectTemplates = new ProjectTemplate.ProjectTemplateCollection(); public ProjectTemplate.ProjectTemplateCollection ProjectTemplates { get { return mvarProjectTemplates; } } public override void Clear() { mvarAssociations.Clear(); mvarDataFormats.Clear(); mvarObjectModels.Clear(); mvarProjectTypes.Clear(); } public override void CopyTo(ObjectModel where) { } } }