Esempio n. 1
0
 public InterpretationPlanCheckConnectednessSource(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge)
 {
     this.node = node;
     this.edge = edge;
     AssignId();
 }
Esempio n. 2
0
 public InterpretationPlanImplicitTheOther(int targetType, InterpretationPlanEdgeMatcher source,
     InterpretationPlanNodeMatcher theOther, SearchPlanNodeNode planNodeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.theOther = theOther;
     this.planNodeNode = planNodeNode;
     AssignId();
 }
Esempio n. 3
0
 public InterpretationPlanImplicitSourceOrTarget(int targetType, InterpretationPlanEdgeMatcher source,
     InterpretationPlanDirectionVariable directionVariable, SearchPlanNodeNode planNodeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.directionVariable = directionVariable;
     this.planNodeNode = planNodeNode;
     AssignId();
 }
Esempio n. 4
0
 public InterpretationPlanCheckCondition(expression.AreAttributesEqual condition, InterpretationPlanEdgeMatcher edgeMatcher, int indexOfCorrespondingEdge)
 {
     this.condition = condition;
     this.edgeMatcher = edgeMatcher;
     this.indexOfCorrespondingElement = indexOfCorrespondingEdge;
     AssignId();
 }
Esempio n. 5
0
 public InterpretationPlanCheckConnectednessTheOther(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge, InterpretationPlanNodeMatcher theOther)
 {
     this.node = node;
     this.edge = edge;
     this.theOther = theOther;
     AssignId();
 }
Esempio n. 6
0
 public InterpretationPlanCheckConnectednessSourceOrTarget(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge, InterpretationPlanDirectionVariable directionVariable)
 {
     this.node = node;
     this.edge = edge;
     this.directionVariable = directionVariable;
     AssignId();
 }