Node: get/set alias

This commit is contained in:
Thomas Gelf 2015-02-13 01:54:08 +01:00
parent 3e04cc1b2a
commit b2c3af4138

View file

@ -207,7 +207,6 @@ abstract class Node
return $this->ack;
}
public function isSimulationMode()
{
return $this->bp->isSimulationMode();
@ -233,6 +232,16 @@ abstract class Node
return array();
}
public function hasAlias()
{
return false;
}
public function getAlias()
{
return $this->name;
}
protected function renderHtmlForChildren($view)
{
$html = '';