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