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

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