ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.assAnswerMatchingPair.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
28 {
31  protected float $points;
32 
33  public function __construct(
35  assAnswerMatchingDefinition $definition,
36  float $points = 0.0
37  ) {
38  $this->term = $term;
39  $this->definition = $definition;
40  $this->points = $points;
41  }
42 
43  public function getTerm(): assAnswerMatchingTerm
44  {
45  return $this->term;
46  }
47  public function withTerm(assAnswerMatchingTerm $term): self
48  {
49  $clone = clone $this;
50  $clone->term = $term;
51  return $clone;
52  }
53 
55  {
56  return $this->definition;
57  }
58  public function withDefinition(assAnswerMatchingDefinition $definition): self
59  {
60  $clone = clone $this;
61  $clone->definition = $definition;
62  return $clone;
63  }
64 
65  public function getPoints(): float
66  {
67  return $this->points;
68  }
69  public function withPoints(float $points): self
70  {
71  $clone = clone $this;
72  $clone->points = $points;
73  return $clone;
74  }
75 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(assAnswerMatchingTerm $term, assAnswerMatchingDefinition $definition, float $points=0.0)
withDefinition(assAnswerMatchingDefinition $definition)
assAnswerMatchingDefinition $definition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
withTerm(assAnswerMatchingTerm $term)