public static OutputSettings GetOutputSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Output Settings"); return(stereotype != null ? new OutputSettings(stereotype) : null); }
public static bool HasOutputSettings(this ElementMappingModel model) { return(model.HasStereotype("Output Settings")); }
public static bool HasCriteriaSettings(this ElementMappingModel model) { return(model.HasStereotype("Criteria Settings")); }
public static CriteriaSettings GetCriteriaSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Criteria Settings"); return(stereotype != null ? new CriteriaSettings(stereotype) : null); }
public static bool HasBehaviourSettings(this ElementMappingModel model) { return(model.HasStereotype("Behaviour Settings")); }
public static BehaviourSettings GetBehaviourSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Behaviour Settings"); return(stereotype != null ? new BehaviourSettings(stereotype) : null); }
public bool Equals(ElementMappingModel other) { return(Equals(_element, other?._element)); }