/**
  * Builds code which calls the lifecycle initialization method, if any.
  *
  * @param Configuration $objectConfiguration
  * @param integer $cause a \TYPO3\Flow\Object\ObjectManagerInterface::INITIALIZATIONCAUSE_* constant which is the cause of the initialization command being called.
  * @return string
  */
 protected function buildLifecycleInitializationCode(Configuration $objectConfiguration, $cause)
 {
     $lifecycleInitializationMethodName = $objectConfiguration->getLifecycleInitializationMethodName();
     if (!$this->reflectionService->hasMethod($objectConfiguration->getClassName(), $lifecycleInitializationMethodName)) {
         return '';
     }
     $className = $objectConfiguration->getClassName();
     $code = "\n" . '		if (get_class($this) === \'' . $className . '\') {' . "\n";
     $code .= '			$this->' . $lifecycleInitializationMethodName . '(' . $cause . ');' . "\n";
     $code .= '		}' . "\n";
     return $code;
 }