public static bool HasSetting(this AssociationVisualSettingsModel model) { return(model.HasStereotype("Setting")); }
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); }