Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php
Go to the documentation of this file.
00001 <?php
00031 class Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail
00032 {
00038     public $name = null;
00039 
00045     public $description = null;
00046 
00052     public $duration = null;
00053 
00063     public function __construct($name, $description, $duration)
00064     {
00065         $this->setName($name);
00066         $this->setDescription($description);
00067         $this->setDuration($duration);
00068     }
00069 
00076     public function setDuration($duration)
00077     {
00078         $this->duration = $duration;
00079         return $this;
00080     }
00081 
00085     public function getDuration()
00086     {
00087         return $this->duration;
00088     }
00089 
00096     public function setDescription($description)
00097     {
00098         $this->description = $description;
00099         return $this;
00100     }
00101 
00105     public function getDescription()
00106     {
00107         return $this->description;
00108     }
00109 
00116     public function setName($name)
00117     {
00118         $this->name = $name;
00119         return $this;
00120     }
00121 
00125     public function getName()
00126     {
00127         return $this->name;
00128     }
00129 }
 All Data Structures Namespaces Files Functions Variables Enumerations