Example #1
0
 public static bool HasPointSettings(this AssociationEndVisualSettingsModel model)
 {
     return(model.HasStereotype("Point Settings"));
 }
Example #2
0
        public static PointSettings GetPointSettings(this AssociationEndVisualSettingsModel model)
        {
            var stereotype = model.GetStereotype("Point Settings");

            return(stereotype != null ? new PointSettings(stereotype) : null);
        }
Example #3
0
        public static NavigableIndicatorSettings GetNavigableIndicatorSettings(this AssociationEndVisualSettingsModel model)
        {
            var stereotype = model.GetStereotype("Navigable Indicator Settings");

            return(stereotype != null ? new NavigableIndicatorSettings(stereotype) : null);
        }
Example #4
0
 public static bool HasNavigableIndicatorSettings(this AssociationEndVisualSettingsModel model)
 {
     return(model.HasStereotype("Navigable Indicator Settings"));
 }
Example #5
0
 public bool Equals(AssociationEndVisualSettingsModel other)
 {
     return(Equals(_element, other._element));
 }