Changeset 187
- Timestamp:
- 12/16/11 11:26:53 (13 years ago)
- Location:
- Dev/trunk/classes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/Application.php
r186 r187 34 34 { 35 35 //Do nothing, there are no references in application. 36 return true; 36 37 } 37 38 38 } 39 39 ?> -
Dev/trunk/classes/Question.php
r186 r187 41 41 } 42 42 43 /**44 * function evaluate()45 * evaluates all the references of this object.46 */47 public function evaluate()48 {49 //Do nothing since Question does not contain any references50 }51 43 } 52 44 -
Dev/trunk/classes/ResearchToolObject.php
r186 r187 8 8 public $uid; 9 9 //Uncomment when done with creating all evaluation methods \o///// 10 // public abstract function evaluate(); 10 public function evaluate() 11 { 12 return true; 13 } 11 14 } 12 15 -
Dev/trunk/classes/Respondent.php
r186 r187 27 27 } 28 28 29 /*30 * function evaluate()31 * evaluates all the references.32 */33 public function evaluate()34 {35 //Do nothing since Respondent does not contain any references.36 }37 38 29 } 39 30 -
Dev/trunk/classes/User.php
r186 r187 25 25 $this->password = $password; 26 26 } 27 28 /**29 * function evaluate()30 * Evaluates all the references of this object.31 */32 public function evaluate()33 {34 //Do nothing.35 }36 37 27 } 38 28
Note: See TracChangeset
for help on using the changeset viewer.