* Tous droits réservés. */ namespace Irstea\PlantUmlBundle\Model; use Irstea\PlantUmlBundle\Writer\WritableNodeInterface; /** * * @author Guillaume Perréal */ interface NodeInterface extends WritableNodeInterface { /** * @param ArrowInterface $arrow * @return self */ public function addArrow(ArrowInterface $arrow); }