Пример #1
0
 public static bool HasDrawSettings(this DrawSettingsModel model)
 {
     return(model.HasStereotype("Draw Settings"));
 }
Пример #2
0
 public bool Equals(DrawSettingsModel other)
 {
     return(Equals(_element, other._element));
 }
Пример #3
0
        public static DrawSettings GetDrawSettings(this DrawSettingsModel model)
        {
            var stereotype = model.GetStereotype("Draw Settings");

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