コード例 #1
0
 public static bool HasPathSettings(this PathDrawSettingsModel model)
 {
     return(model.HasStereotype("Path Settings"));
 }
コード例 #2
0
 public bool Equals(PathDrawSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }
コード例 #3
0
        public static PathSettings GetPathSettings(this PathDrawSettingsModel model)
        {
            var stereotype = model.GetStereotype("Path Settings");

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