diff -r bd595ad770fc -r 1c2f13fd785c web/enmi/Zend/Tool/Framework/Metadata/Tool.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/enmi/Zend/Tool/Framework/Metadata/Tool.php Thu Jan 20 19:30:54 2011 +0100 @@ -0,0 +1,218 @@ +_clientName = $clientName; + return $this; + } + + public function getClientName() + { + return $this->_clientName; + } + + /** + * setActionName() + * + * @param string $actionName + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setActionName($actionName) + { + $this->_actionName = $actionName; + return $this; + } + + /** + * getActionName() + * + * @return string + */ + public function getActionName() + { + return $this->_actionName; + } + + /** + * setProviderName() + * + * @param string $providerName + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setProviderName($providerName) + { + $this->_providerName = $providerName; + return $this; + } + + /** + * getProviderName() + * + * @return string + */ + public function getProviderName() + { + return $this->_providerName; + } + + /** + * setSpecialtyName() + * + * @param string $specialtyName + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setSpecialtyName($specialtyName) + { + $this->_specialtyName = $specialtyName; + return $this; + } + + /** + * getSpecialtyName() + * + * @return string + */ + public function getSpecialtyName() + { + return $this->_specialtyName; + } + + /** + * setClientReference() + * + * @param Zend_Tool_Framework_Client_Abstract $client + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setClientReference(Zend_Tool_Framework_Client_Abstract $client) + { + $this->_clientReference = $client; + return $this; + } + + /** + * getClientReference() + * + * @return Zend_Tool_Framework_Client_Abstract + */ + public function getClientReference() + { + return $this->_clientReference; + } + + /** + * setActionReference() + * + * @param Zend_Tool_Framework_Action_Interface $action + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setActionReference(Zend_Tool_Framework_Action_Interface $action) + { + $this->_actionReference = $action; + return $this; + } + + /** + * getActionReference() + * + * @return Zend_Tool_Framework_Action_Interface + */ + public function getActionReference() + { + return $this->_actionReference; + } + + /** + * setProviderReference() + * + * @param Zend_Tool_Framework_Provider_Interface $provider + * @return Zend_Tool_Framework_Metadata_Tool + */ + public function setProviderReference(Zend_Tool_Framework_Provider_Interface $provider) + { + $this->_providerReference = $provider; + return $this; + } + + /** + * getProviderReference() + * + * @return Zend_Tool_Framework_Provider_Interface + */ + public function getProviderReference() + { + return $this->_providerReference; + } + + /** + * __toString() cast to string + * + * @return string + */ + public function __toString() + { + $string = parent::__toString(); + $string .= ' (ProviderName: ' . $this->_providerName + . ', ActionName: ' . $this->_actionName + . ', SpecialtyName: ' . $this->_specialtyName + . ')'; + + return $string; + } + +}