コード例 #1
0
 public COSEMRoot()
 {
     this._physicalDevice = new ObservableCompositionOrderedSet <IPhysicalDevice>(this);
     this._physicalDevice.CollectionChanging += this.PhysicalDeviceCollectionChanging;
     this._physicalDevice.CollectionChanged  += this.PhysicalDeviceCollectionChanged;
     this._logicalDevice = new ObservableCompositionOrderedSet <ILogicalDevice>(this);
     this._logicalDevice.CollectionChanging += this.LogicalDeviceCollectionChanging;
     this._logicalDevice.CollectionChanged  += this.LogicalDeviceCollectionChanged;
 }
コード例 #2
0
 public PlainSelect()
 {
     this._selItems = new ObservableCompositionOrderedSet <ISelectItem>(this);
     this._selItems.CollectionChanging += this.SelItemsCollectionChanging;
     this._selItems.CollectionChanged  += this.SelItemsCollectionChanged;
     this._joins = new ObservableCompositionOrderedSet <IJoin>(this);
     this._joins.CollectionChanging += this.JoinsCollectionChanging;
     this._joins.CollectionChanged  += this.JoinsCollectionChanged;
 }
コード例 #3
0
 public Class()
 {
     this._members = new ObservableCompositionOrderedSet <IMember>(this);
     this._members.CollectionChanging += this.MembersCollectionChanging;
     this._members.CollectionChanged  += this.MembersCollectionChanged;
     this._baseTypes = new ObservableCompositionOrderedSet <ITypeReference>(this);
     this._baseTypes.CollectionChanging += this.BaseTypesCollectionChanging;
     this._baseTypes.CollectionChanged  += this.BaseTypesCollectionChanged;
 }
コード例 #4
0
 public BlockB()
 {
     this._inputPorts = new ObservableCompositionOrderedSet <IInPortB>(this);
     this._inputPorts.CollectionChanging += this.InputPortsCollectionChanging;
     this._inputPorts.CollectionChanged  += this.InputPortsCollectionChanged;
     this._outputPorts = new ObservableCompositionOrderedSet <IOutPortB>(this);
     this._outputPorts.CollectionChanging += this.OutputPortsCollectionChanging;
     this._outputPorts.CollectionChanged  += this.OutputPortsCollectionChanged;
 }
コード例 #5
0
ファイル: ClassModel.cs プロジェクト: MeysamKarimi/MDEMGTT
 public ClassModel()
 {
     this._classes = new ObservableCompositionOrderedSet <MDEMGTT.ArchitectureCRA.IClass>(this);
     this._classes.CollectionChanging += this.ClassesCollectionChanging;
     this._classes.CollectionChanged  += this.ClassesCollectionChanged;
     this._features = new ObservableCompositionOrderedSet <IFeature>(this);
     this._features.CollectionChanging += this.FeaturesCollectionChanging;
     this._features.CollectionChanged  += this.FeaturesCollectionChanged;
 }
コード例 #6
0
 public JobCollection()
 {
     this._labware = new ObservableCompositionOrderedSet <ILabware>(this);
     this._labware.CollectionChanging += this.LabwareCollectionChanging;
     this._labware.CollectionChanged  += this.LabwareCollectionChanged;
     this._jobs = new ObservableCompositionOrderedSet <IJob>(this);
     this._jobs.CollectionChanging += this.JobsCollectionChanging;
     this._jobs.CollectionChanged  += this.JobsCollectionChanged;
 }
コード例 #7
0
 public SocialNetworkRoot()
 {
     this._posts = new ObservableCompositionOrderedSet <IPost>(this);
     this._posts.CollectionChanging += this.PostsCollectionChanging;
     this._posts.CollectionChanged  += this.PostsCollectionChanged;
     this._users = new ObservableCompositionOrderedSet <IUser>(this);
     this._users.CollectionChanging += this.UsersCollectionChanging;
     this._users.CollectionChanged  += this.UsersCollectionChanged;
 }
コード例 #8
0
 public Environment()
 {
     this._containers = new EnvironmentContainersCollection(this);
     this._containers.CollectionChanging += this.ContainersCollectionChanging;
     this._containers.CollectionChanged  += this.ContainersCollectionChanged;
     this._links = new ObservableCompositionOrderedSet <ILink>(this);
     this._links.CollectionChanging += this.LinksCollectionChanging;
     this._links.CollectionChanged  += this.LinksCollectionChanged;
 }
コード例 #9
0
ファイル: ProductDefinition.cs プロジェクト: wasowski/NMF
 public ProductDefinition()
 {
     this._productsegments = new ObservableCompositionOrderedSet <IProductSegment>(this);
     this._productsegments.CollectionChanging += this.ProductsegmentsCollectionChanging;
     this._productsegments.CollectionChanged  += this.ProductsegmentsCollectionChanged;
     this._workpiecetypes = new ObservableCompositionOrderedSet <IWorkpieceType>(this);
     this._workpiecetypes.CollectionChanging += this.WorkpiecetypesCollectionChanging;
     this._workpiecetypes.CollectionChanged  += this.WorkpiecetypesCollectionChanged;
 }
コード例 #10
0
 public Entity()
 {
     this._ends = new ObservableCompositionOrderedSet <IAssociationEnd>(this);
     this._ends.CollectionChanging += this.EndsCollectionChanging;
     this._ends.CollectionChanged  += this.EndsCollectionChanged;
     this._attributes = new ObservableCompositionOrderedSet <TTC2021.OclToSql.Ocl.Dm.IAttribute>(this);
     this._attributes.CollectionChanging += this.AttributesCollectionChanging;
     this._attributes.CollectionChanged  += this.AttributesCollectionChanged;
 }
コード例 #11
0
 public Assay()
 {
     this._steps = new ObservableCompositionOrderedSet <IProtocolStep>(this);
     this._steps.CollectionChanging += this.StepsCollectionChanging;
     this._steps.CollectionChanged  += this.StepsCollectionChanged;
     this._reagents = new ObservableCompositionOrderedSet <IReagent>(this);
     this._reagents.CollectionChanging += this.ReagentsCollectionChanging;
     this._reagents.CollectionChanged  += this.ReagentsCollectionChanged;
 }
コード例 #12
0
 public Component_MM06()
 {
     this._services = new ObservableCompositionOrderedSet <IService>(this);
     this._services.CollectionChanging           += this.ServicesCollectionChanging;
     this._services.CollectionChanged            += this.ServicesCollectionChanged;
     this._providedInterfaces                     = new ObservableAssociationOrderedSet <IInterface>();
     this._providedInterfaces.CollectionChanging += this.ProvidedInterfacesCollectionChanging;
     this._providedInterfaces.CollectionChanged  += this.ProvidedInterfacesCollectionChanged;
     this._requiredInterfaces                     = new ObservableAssociationOrderedSet <IInterface>();
     this._requiredInterfaces.CollectionChanging += this.RequiredInterfacesCollectionChanging;
     this._requiredInterfaces.CollectionChanged  += this.RequiredInterfacesCollectionChanged;
 }
コード例 #13
0
 public Repository_MM06()
 {
     this._interfaces = new ObservableCompositionOrderedSet <IInterface>(this);
     this._interfaces.CollectionChanging += this.InterfacesCollectionChanging;
     this._interfaces.CollectionChanged  += this.InterfacesCollectionChanged;
     this._components = new ObservableCompositionOrderedSet <IComponent_MM06>(this);
     this._components.CollectionChanging          += this.ComponentsCollectionChanging;
     this._components.CollectionChanged           += this.ComponentsCollectionChanged;
     this._availableSignatures                     = new ObservableCompositionOrderedSet <ISignature>(this);
     this._availableSignatures.CollectionChanging += this.AvailableSignaturesCollectionChanging;
     this._availableSignatures.CollectionChanged  += this.AvailableSignaturesCollectionChanged;
 }
コード例 #14
0
ファイル: XMLTypeDocumentRoot.cs プロジェクト: wasowski/NMF
 public XMLTypeDocumentRoot()
 {
     this._mixed = new ObservableList <object>();
     this._mixed.CollectionChanging             += this.MixedCollectionChanging;
     this._mixed.CollectionChanged              += this.MixedCollectionChanged;
     this._xMLNSPrefixMap                        = new ObservableCompositionOrderedSet <IEStringToStringMapEntry>(this);
     this._xMLNSPrefixMap.CollectionChanging    += this.XMLNSPrefixMapCollectionChanging;
     this._xMLNSPrefixMap.CollectionChanged     += this.XMLNSPrefixMapCollectionChanged;
     this._xSISchemaLocation                     = new ObservableCompositionOrderedSet <IEStringToStringMapEntry>(this);
     this._xSISchemaLocation.CollectionChanging += this.XSISchemaLocationCollectionChanging;
     this._xSISchemaLocation.CollectionChanged  += this.XSISchemaLocationCollectionChanged;
 }
コード例 #15
0
 public CompositeComponent()
 {
     this._encapsulatedContexts = new ObservableCompositionOrderedSet <IAssemblyContext>(this);
     this._encapsulatedContexts.CollectionChanging += this.EncapsulatedContextsCollectionChanging;
     this._encapsulatedContexts.CollectionChanged  += this.EncapsulatedContextsCollectionChanged;
     this._delegateConnectors = new ObservableCompositionOrderedSet <IDelegateConnector>(this);
     this._delegateConnectors.CollectionChanging += this.DelegateConnectorsCollectionChanging;
     this._delegateConnectors.CollectionChanged  += this.DelegateConnectorsCollectionChanged;
     this._connectors = new ObservableCompositionOrderedSet <IAssemblyConnector>(this);
     this._connectors.CollectionChanging += this.ConnectorsCollectionChanging;
     this._connectors.CollectionChanged  += this.ConnectorsCollectionChanged;
 }
コード例 #16
0
 public Repository()
 {
     this._interfaces = new ObservableCompositionOrderedSet <IInterface>(this);
     this._interfaces.CollectionChanging += this.InterfacesCollectionChanging;
     this._interfaces.CollectionChanged  += this.InterfacesCollectionChanged;
     this._components = new ObservableCompositionOrderedSet <FZI.SoftwareEngineering.DeepModeling.TwoLevelADL.SystemIndependent.IComponent>(this);
     this._components.CollectionChanging          += this.ComponentsCollectionChanging;
     this._components.CollectionChanged           += this.ComponentsCollectionChanged;
     this._availableSignatures                     = new ObservableCompositionOrderedSet <ISignature>(this);
     this._availableSignatures.CollectionChanging += this.AvailableSignaturesCollectionChanging;
     this._availableSignatures.CollectionChanged  += this.AvailableSignaturesCollectionChanged;
 }
コード例 #17
0
ファイル: EAnnotation.cs プロジェクト: lukeIam/NMF
 public EAnnotation()
 {
     this._details = new ObservableCompositionOrderedSet <IEStringToStringMapEntry>(this);
     this._details.CollectionChanging += this.DetailsCollectionChanging;
     this._details.CollectionChanged  += this.DetailsCollectionChanged;
     this._contents = new ObservableCompositionOrderedSet <IModelElement>(this);
     this._contents.CollectionChanging += this.ContentsCollectionChanging;
     this._contents.CollectionChanged  += this.ContentsCollectionChanged;
     this._references = new ObservableAssociationOrderedSet <IModelElement>();
     this._references.CollectionChanging += this.ReferencesCollectionChanging;
     this._references.CollectionChanged  += this.ReferencesCollectionChanged;
 }
コード例 #18
0
ファイル: EOperation.cs プロジェクト: mlessmann/NMF
 public EOperation()
 {
     this._eTypeParameters = new ObservableCompositionOrderedSet <IETypeParameter>(this);
     this._eTypeParameters.CollectionChanging += this.ETypeParametersCollectionChanging;
     this._eTypeParameters.CollectionChanged  += this.ETypeParametersCollectionChanged;
     this._eParameters = new EOperationEParametersCollection(this);
     this._eParameters.CollectionChanging += this.EParametersCollectionChanging;
     this._eParameters.CollectionChanged  += this.EParametersCollectionChanged;
     this._eExceptions = new ObservableAssociationOrderedSet <IEClassifier>();
     this._eExceptions.CollectionChanging        += this.EExceptionsCollectionChanging;
     this._eExceptions.CollectionChanged         += this.EExceptionsCollectionChanged;
     this._eGenericExceptions                     = new ObservableCompositionOrderedSet <IEGenericType>(this);
     this._eGenericExceptions.CollectionChanging += this.EGenericExceptionsCollectionChanging;
     this._eGenericExceptions.CollectionChanged  += this.EGenericExceptionsCollectionChanged;
 }
コード例 #19
0
ファイル: EClass.cs プロジェクト: lukeIam/NMF
 public EClass()
 {
     this._eSuperTypes = new ObservableAssociationOrderedSet <IEClass>();
     this._eSuperTypes.CollectionChanging += this.ESuperTypesCollectionChanging;
     this._eSuperTypes.CollectionChanged  += this.ESuperTypesCollectionChanged;
     this._eOperations = new EClassEOperationsCollection(this);
     this._eOperations.CollectionChanging         += this.EOperationsCollectionChanging;
     this._eOperations.CollectionChanged          += this.EOperationsCollectionChanged;
     this._eStructuralFeatures                     = new EClassEStructuralFeaturesCollection(this);
     this._eStructuralFeatures.CollectionChanging += this.EStructuralFeaturesCollectionChanging;
     this._eStructuralFeatures.CollectionChanged  += this.EStructuralFeaturesCollectionChanged;
     this._eGenericSuperTypes = new ObservableCompositionOrderedSet <IEGenericType>(this);
     this._eGenericSuperTypes.CollectionChanging += this.EGenericSuperTypesCollectionChanging;
     this._eGenericSuperTypes.CollectionChanged  += this.EGenericSuperTypesCollectionChanged;
 }
コード例 #20
0
 public ElementaryChangeTransaction()
 {
     this._nestedChanges = new ObservableCompositionOrderedSet <IModelChange>(this);
     this._nestedChanges.CollectionChanging += this.NestedChangesCollectionChanging;
     this._nestedChanges.CollectionChanged  += this.NestedChangesCollectionChanged;
 }
コード例 #21
0
ファイル: Signature.cs プロジェクト: wasowski/NMF
 public Signature()
 {
     this._parameter = new ObservableCompositionOrderedSet <IParameter>(this);
     this._parameter.CollectionChanging += this.ParameterCollectionChanging;
     this._parameter.CollectionChanged  += this.ParameterCollectionChanged;
 }
コード例 #22
0
ファイル: CPLModel.cs プロジェクト: MeysamKarimi/MDEMGTT
 public CPLModel()
 {
     this._elements = new ObservableCompositionOrderedSet <IElement>(this);
     this._elements.CollectionChanging += this.ElementsCollectionChanging;
     this._elements.CollectionChanged  += this.ElementsCollectionChanged;
 }
コード例 #23
0
 public CaseExpression()
 {
     this._whenClauses = new ObservableCompositionOrderedSet <IWhenClause>(this);
     this._whenClauses.CollectionChanging += this.WhenClausesCollectionChanging;
     this._whenClauses.CollectionChanged  += this.WhenClausesCollectionChanged;
 }
コード例 #24
0
ファイル: Book.cs プロジェクト: qishen/ttc2019-live
 public Book()
 {
     this._articles = new ObservableCompositionOrderedSet <IArticle>(this);
     this._articles.CollectionChanging += this.ArticlesCollectionChanging;
     this._articles.CollectionChanged  += this.ArticlesCollectionChanged;
 }
コード例 #25
0
 public EClassifier()
 {
     this._eTypeParameters = new ObservableCompositionOrderedSet <IETypeParameter>(this);
     this._eTypeParameters.CollectionChanging += this.ETypeParametersCollectionChanging;
     this._eTypeParameters.CollectionChanged  += this.ETypeParametersCollectionChanged;
 }
コード例 #26
0
ファイル: Model.cs プロジェクト: marcueberschaer/NMF
 public Model()
 {
     this._rootElements = new ObservableCompositionOrderedSet <NMF.Models.IModelElement>(this);
     this._rootElements.CollectionChanging += this.RootElementsCollectionChanging;
     this._rootElements.CollectionChanged  += this.RootElementsCollectionChanged;
 }
コード例 #27
0
ファイル: Allocation.cs プロジェクト: wasowski/NMF
 public Allocation()
 {
     this._contexts = new ObservableCompositionOrderedSet <IAllocationContext>(this);
     this._contexts.CollectionChanging += this.ContextsCollectionChanging;
     this._contexts.CollectionChanged  += this.ContextsCollectionChanged;
 }
コード例 #28
0
 public PrioritySwitch()
 {
     this._priorities = new ObservableCompositionOrderedSet <ISwitchedPriority>(this);
     this._priorities.CollectionChanging += this.PrioritiesCollectionChanging;
     this._priorities.CollectionChanged  += this.PrioritiesCollectionChanged;
 }
コード例 #29
0
ファイル: Model.cs プロジェクト: FrederikP/NMF
 public Model()
 {
     RootElements = new ObservableCompositionOrderedSet<IModelElement>(this);
 }
コード例 #30
0
 public AddressSwitch()
 {
     this._addresses = new ObservableCompositionOrderedSet <ISwitchedAddress>(this);
     this._addresses.CollectionChanging += this.AddressesCollectionChanging;
     this._addresses.CollectionChanged  += this.AddressesCollectionChanged;
 }
コード例 #31
0
 public ETypeParameter()
 {
     this._eBounds = new ObservableCompositionOrderedSet <IEGenericType>(this);
     this._eBounds.CollectionChanging += this.EBoundsCollectionChanging;
     this._eBounds.CollectionChanged  += this.EBoundsCollectionChanged;
 }