TYPO3 CMS  TYPO3_8-7
EquiJoinCondition.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
25 {
29  protected $selector1Name;
30 
34  protected $property1Name;
35 
39  protected $selector2Name;
40 
44  protected $property2Name;
45 
55  {
56  // @todo Test for selector1Name = selector2Name -> exception
57  $this->selector1Name = $selector1Name;
58  $this->property1Name = $property1Name;
59  $this->selector2Name = $selector2Name;
60  $this->property2Name = $property2Name;
61  }
62 
68  public function getSelector1Name()
69  {
70  return $this->selector1Name;
71  }
72 
78  public function getProperty1Name()
79  {
80  return $this->property1Name;
81  }
82 
88  public function getSelector2Name()
89  {
90  return $this->selector2Name;
91  }
92 
98  public function getProperty2Name()
99  {
100  return $this->property2Name;
101  }
102 
108  public function getChildSelectorName()
109  {
110  return '';
111  }
112 
118  public function getParentSelectorName()
119  {
120  return '';
121  }
122 }
__construct($selector1Name, $property1Name, $selector2Name, $property2Name)