Exemplo n.º 1
0
 public Relation()
 {
     this._operationalImpl = new RelationOperationalImplCollection(this);
     this._operationalImpl.CollectionChanging += this.OperationalImplCollectionChanging;
     this._operationalImpl.CollectionChanged  += this.OperationalImplCollectionChanged;
     this._variable = new ObservableCompositionSet <IVariable>(this);
     this._variable.CollectionChanging += this.VariableCollectionChanging;
     this._variable.CollectionChanged  += this.VariableCollectionChanged;
 }
 public ExpressionInOcl()
 {
     this._generatedType = new ObservableCompositionSet <IType>(this);
     this._generatedType.CollectionChanging += this.GeneratedTypeCollectionChanging;
     this._generatedType.CollectionChanged  += this.GeneratedTypeCollectionChanged;
     this._parameterVariable = new ObservableCompositionSet <IVariable>(this);
     this._parameterVariable.CollectionChanging += this.ParameterVariableCollectionChanging;
     this._parameterVariable.CollectionChanged  += this.ParameterVariableCollectionChanged;
 }
 public CollectionTemplateExp()
 {
     this._member = new ObservableCompositionSet <IOclExpression>(this);
     this._member.CollectionChanging += this.MemberCollectionChanging;
     this._member.CollectionChanged  += this.MemberCollectionChanged;
 }
Exemplo n.º 4
0
 public Element()
 {
     this._ownedComment = new ObservableCompositionSet <IComment>(this);
     this._ownedComment.CollectionChanging += this.OwnedCommentCollectionChanging;
     this._ownedComment.CollectionChanged  += this.OwnedCommentCollectionChanged;
 }