Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php
Go to the documentation of this file.
00001 <?php
00026 require_once 'Zend/Validate/Ip.php';
00027 
00036 class Zend_Service_DeveloperGarden_ConferenceCall_ParticipantStatus
00037 {
00041     public $name = null;
00042 
00046     public $value = null;
00047 
00054     public function __construct($name, $value = null)
00055     {
00056         $this->setName($name)
00057              ->setValue($value);
00058     }
00059 
00065     public function getName()
00066     {
00067         return $this->name;
00068     }
00069 
00076     public function setName($name)
00077     {
00078         $this->name = $name;
00079         return $this;
00080     }
00081 
00087     public function getValue()
00088     {
00089         return $this->value;
00090     }
00091 
00098     public function setValue($value = null)
00099     {
00100         $this->value = $value;
00101         return $this;
00102     }
00103 }
 All Data Structures Namespaces Files Functions Variables Enumerations