RDBManyToOneRelationDescription.php
34 * @param $otherMinMultiplicity The minimum number of instances at the other end (number or 'unbound')
35 * @param $otherMaxMultiplicity The maximum number of instances at the other end (number or 'unbound')
37 * @param $otherAggregationKind The aggregation kind at the other end ('none', 'shared' or 'composite')
40 * @param $hierarchyType The hierarchy type that the other end has in relation to this end ('parent', 'child', 'undefined')
41 * @param $idName The name of the attribute in the 'other' end's type, that is referenced by the foreign key attribute in 'this' end's type
44 public function __construct($thisType, $thisRole, $otherType, $otherRole, $thisMinMultiplicity, $thisMaxMultiplicity,
45 $otherMinMultiplicity, $otherMaxMultiplicity, $thisAggregationKind, $otherAggregationKind, $thisNavigability, $otherNavigability,
48 parent::__construct($thisType, $thisRole, $otherType, $otherRole, $thisMinMultiplicity, $thisMaxMultiplicity,
$thisNavigability
Definition: RelationDescription.php:36
$otherAggregationKind
Definition: RelationDescription.php:34
$thisMinMultiplicity
Definition: RelationDescription.php:28
$idName
Definition: RDBManyToOneRelationDescription.php:23
__construct($thisType, $thisRole, $otherType, $otherRole, $thisMinMultiplicity, $thisMaxMultiplicity, $otherMinMultiplicity, $otherMaxMultiplicity, $thisAggregationKind, $otherAggregationKind, $thisNavigability, $otherNavigability, $hierarchyType, $idName, $fkName)
Constructor.
Definition: RDBManyToOneRelationDescription.php:44
Instances of RDBManyToOneRelationDescription describe a many to one relation from 'this' end (many) t...
Definition: RDBManyToOneRelationDescription.php:21
$hierarchyType
Definition: RelationDescription.php:39
$fkName
Definition: RDBManyToOneRelationDescription.php:24
Instances of RelationDescription describe relations between different types of PersistentObjects.
Definition: RelationDescription.php:21
$thisAggregationKind
Definition: RelationDescription.php:33
$otherNavigability
Definition: RelationDescription.php:37
$otherMaxMultiplicity
Definition: RelationDescription.php:31
$otherMinMultiplicity
Definition: RelationDescription.php:30
getFkName()
Get the name of the foreign key attribute in 'this' end's type.
Definition: RDBManyToOneRelationDescription.php:69
$thisMaxMultiplicity
Definition: RelationDescription.php:29
getIdName()
Get the name of the attribute in the 'other' end's type, that is referenced by the foreign key attrib...
Definition: RDBManyToOneRelationDescription.php:61