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

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

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