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