Exemplo n.º 1
0
 public override void Update(UmlTaggedValueSpec spec)
 {
     eaAttributeTag.Name = spec.Name;
     if (spec.Value != null)
     {
         eaAttributeTag.Value = spec.Value;
     }
     eaAttributeTag.Update();
 }
 public static AttributeTag WithValue(this AttributeTag taggedValue, string value)
 {
     taggedValue.Value = value;
     taggedValue.Update();
     return(taggedValue);
 }