diff -r 000000000000 -r 4eba9c11703f web/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php Mon Dec 13 18:29:26 2010 +0100 @@ -0,0 +1,103 @@ +setName($name) + ->setValue($value); + } + + /** + * returns the value of $name + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * sets $name + * + * @param string $name + * @return Zend_Service_DeveloperGarden_ConferenceCall_ParticipantStatus + */ + public function setName($name) + { + $this->name = $name; + return $this; + } + + /** + * returns the value of $value + * + * @return string + */ + public function getValue() + { + return $this->value; + } + + /** + * sets $value + * + * @param string $value + * @return Zend_Service_DeveloperGarden_ConferenceCall_ParticipantStatus + */ + public function setValue($value = null) + { + $this->value = $value; + return $this; + } +}