TYPO3 CMS  TYPO3_6-2
EquiJoinCondition.php
Go to the documentation of this file.
1 <?php
3 
24 
28  protected $selector1Name;
29 
33  protected $property1Name;
34 
38  protected $selector2Name;
39 
43  protected $property2Name;
44 
54  // TODO Test for selector1Name = selector2Name -> exception
55  $this->selector1Name = $selector1Name;
56  $this->property1Name = $property1Name;
57  $this->selector2Name = $selector2Name;
58  $this->property2Name = $property2Name;
59  }
60 
66  public function getSelector1Name() {
67  return $this->selector1Name;
68  }
69 
75  public function getProperty1Name() {
76  return $this->property1Name;
77  }
78 
84  public function getSelector2Name() {
85  return $this->selector2Name;
86  }
87 
93  public function getProperty2Name() {
94  return $this->property2Name;
95  }
96 
102  public function getChildSelectorName() {
103  return '';
104  }
105 
111  public function getParentSelectorName() {
112  return '';
113  }
114 }
__construct($selector1Name, $property1Name, $selector2Name, $property2Name)