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