Пример #1
0
 public InterpretationPlanIncomingOrOutgoing(int targetType, InterpretationPlanNodeMatcher source,
     InterpretationPlanDirectionVariable directionVariable, SearchPlanEdgeNode planEdgeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.directionVariable = directionVariable;
     this.planEdgeNode = planEdgeNode;
     AssignId();
 }
Пример #2
0
 public InterpretationPlanImplicitSourceOrTarget(int targetType, InterpretationPlanEdgeMatcher source,
     InterpretationPlanDirectionVariable directionVariable, SearchPlanNodeNode planNodeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.directionVariable = directionVariable;
     this.planNodeNode = planNodeNode;
     AssignId();
 }
Пример #3
0
 public InterpretationPlanCheckConnectednessSourceOrTarget(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge, InterpretationPlanDirectionVariable directionVariable)
 {
     this.node = node;
     this.edge = edge;
     this.directionVariable = directionVariable;
     AssignId();
 }