public static bool HasSetting(this AssociationVisualSettingsModel model)
 {
     return(model.HasStereotype("Setting"));
 }
Ejemplo n.º 2
0
 public bool Equals(AssociationVisualSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }
        public static Setting GetSetting(this AssociationVisualSettingsModel model)
        {
            var stereotype = model.GetStereotype("Setting");

            return(stereotype != null ? new Setting(stereotype) : null);
        }