/**
  * Text node handler
  *
  * @param Tx_Fluid_Core_Parser_ParsingState $state
  * @param string $text
  * @return void
  * @author Sebastian Kurfürst <*****@*****.**>
  * @author Karsten Dambekalns <*****@*****.**>
  */
 protected function textHandler(Tx_Fluid_Core_Parser_ParsingState $state, $text)
 {
     $node = $this->objectManager->create('Tx_Fluid_Core_Parser_SyntaxTree_TextNode', $text);
     $this->callInterceptor($node, Tx_Fluid_Core_Parser_InterceptorInterface::INTERCEPT_TEXT);
     $state->getNodeFromStack()->addChildNode($node);
 }