public static CriteriaSettings GetCriteriaSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Criteria Settings"); return(stereotype != null ? new CriteriaSettings(stereotype) : null); }
public static OutputSettings GetOutputSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Output Settings"); return(stereotype != null ? new OutputSettings(stereotype) : null); }
public static BehaviourSettings GetBehaviourSettings(this ElementMappingModel model) { var stereotype = model.GetStereotype("Behaviour Settings"); return(stereotype != null ? new BehaviourSettings(stereotype) : null); }