Ejemplo n.º 1
0
 /**
  * Set the ID and connection point of the object where the line ends
  *
  * @param   string id The diagram object ID
  * @param   int connpoint default 4 The connection point of the object
  */
 public function endAt($id, $connpoint = 4)
 {
     parent::endAt($id, $connpoint);
 }
Ejemplo n.º 2
0
 /**
  * Set the ID and connection point of the object where the line ends
  *
  * UML - Realizes somehow 'ends' at the implementing class...
  *
  * @param   string id The diagram object ID
  * @param   int connpoint default 5 The connection point of the object
  */
 public function endAt($id, $connpoint = 5)
 {
     parent::beginAt($id, $connpoint);
 }
Ejemplo n.º 3
0
 /**
  * Constructor of an UML realization
  *
  */
 public function __construct()
 {
     parent::__construct('UML - Implements', 0);
 }