/// <summary> /// Adds the given element to the collection /// </summary> /// <param name="item">The item to add</param> public override void Add(IModelElement item) { if ((this._parent.InstanceType == null)) { IEDataType instanceTypeCasted = item.As <IEDataType>(); if ((instanceTypeCasted != null)) { this._parent.InstanceType = instanceTypeCasted; return; } } }
/// <summary> /// Creates a new observable property access proxy /// </summary> /// <param name="modelElement">The model instance element for which to create the property access proxy</param> public SerializableProxy(IEDataType modelElement) : base(modelElement) { }