/** * 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); }
/** * 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); }
/** * Constructor of an UML realization * */ public function __construct() { parent::__construct('UML - Implements', 0); }