Пример #1
0
        public static CriteriaSettings GetCriteriaSettings(this ElementMappingModel model)
        {
            var stereotype = model.GetStereotype("Criteria Settings");

            return(stereotype != null ? new CriteriaSettings(stereotype) : null);
        }
Пример #2
0
        public static OutputSettings GetOutputSettings(this ElementMappingModel model)
        {
            var stereotype = model.GetStereotype("Output Settings");

            return(stereotype != null ? new OutputSettings(stereotype) : null);
        }
Пример #3
0
        public static BehaviourSettings GetBehaviourSettings(this ElementMappingModel model)
        {
            var stereotype = model.GetStereotype("Behaviour Settings");

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