ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilAssLacAbstractOperation.php
Go to the documentation of this file.
1<?php
2
3include_once "Modules/TestQuestionPool/classes/questions/LogicalAnswerCompare/ilAssLacAbstractComposite.php";
4
13
17 protected $negated = false;
18
22 abstract public function getPattern();
23
27 public function setNegated($negated)
28 {
29 $this->negated = $negated;
30 }
31
35 public function isNegated()
36 {
37 return $this->negated;
38 }
39}