* @package tao */ abstract class tao_helpers_translation_TaoTranslationFile extends tao_helpers_translation_TranslationFile { // --- ASSOCIATIONS --- // --- ATTRIBUTES --- /** * Id of the extension the translations belongs to. * * @access public * @var Integer */ public $extensionId = null; // --- OPERATIONS --- /** * Gets the extensionId of the extension the translations belong to. * * @access public * @author Jerome Bogaerts, * @return string */ public function getExtensionId() { $returnValue = (string) ''; return (string) $returnValue; } /** * Sets the extensionId of the extension the translations belong to. * * @access public * @author Jerome Bogaerts, * @param string extensionId * @return mixed */ public function setExtensionId($extensionId) { } } /* end of abstract class tao_helpers_translation_TaoTranslationFile */