ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAssQuestionHintRequestStatisticData.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
14 {
20  private $requestsPoints = null;
21 
27  private $requestsCount = null;
28 
32  public function __construct()
33  {
34 
35  }
36 
43  public function getRequestsPoints()
44  {
45  return $this->requestsPoints;
46  }
47 
55  {
56  $this->requestsPoints = $requestsPoints;
57  }
58 
65  public function getRequestsCount()
66  {
67  return $this->requestsCount;
68  }
69 
77  {
78  $this->requestsCount = $requestsCount;
79  }
80 
81 
82 }
83