An error occurred while loading the file. Please try again.
-
Guillaume Perréal authorede721fb6a
<?php
/*
* © 2016 IRSTEA
* Guillaume Perréal <guillaume.perreal@irstea.fr>
* Tous droits réservés.
*/
namespace Irstea\PlantUmlBundle\Model;
use Irstea\PlantUmlBundle\Writer\WritableNodeInterface;
/**
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
interface NodeInterface extends WritableNodeInterface
{
/**
* @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);
}