Esempio n. 1
0
 public UmlRelation With(UmlArrowDirections dir)
 {
     Arrow = Arrow.With(dir);
     return(this);
 }
Esempio n. 2
0
 public UmlRelationAttribute(UmlRelationKind kind = UmlRelationKind.Aggregation,
                             UmlArrowDirections arrowDirection = UmlArrowDirections.Auto) : base(kind)
 {
     ArrowDirection = arrowDirection;
 }
Esempio n. 3
0
 public UmlRelationArrow With(UmlArrowDirections d)
 {
     ArrowDirection = d;
     return(this);
 }