ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5
class.ilAssQuestionHintRequestStatisticData.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
13 {
19  private $requestsPoints = null;
20 
26  private $requestsCount = null;
27 
31  public function __construct()
32  {
33 
34  }
35 
42  public function getRequestsPoints()
43  {
44  return $this->requestsPoints;
45  }
46 
54  {
55  $this->requestsPoints = $requestsPoints;
56  }
57 
64  public function getRequestsCount()
65  {
66  return $this->requestsCount;
67  }
68 
76  {
77  $this->requestsCount = $requestsCount;
78  }
79 
80 
81 }
82 
setRequestsPoints($requestsPoints)
Setter for requestsPonts.
setRequestsCount($requestsCount)
Setter for requestsCount.