コード例 #1
0
 public InterpretationPlanImplicitTheOther(int targetType, InterpretationPlanEdgeMatcher source,
     InterpretationPlanNodeMatcher theOther, SearchPlanNodeNode planNodeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.theOther = theOther;
     this.planNodeNode = planNodeNode;
     AssignId();
 }
コード例 #2
0
 public InterpretationPlanCheckConnectednessSource(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge)
 {
     this.node = node;
     this.edge = edge;
     AssignId();
 }
コード例 #3
0
 public InterpretationPlanIncomingOrOutgoing(int targetType, InterpretationPlanNodeMatcher source,
     InterpretationPlanDirectionVariable directionVariable, SearchPlanEdgeNode planEdgeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.directionVariable = directionVariable;
     this.planEdgeNode = planEdgeNode;
     AssignId();
 }
コード例 #4
0
 public InterpretationPlanOutgoing(int targetType, InterpretationPlanNodeMatcher source,
     SearchPlanEdgeNode planEdgeNode)
 {
     this.targetType = targetType;
     this.source = source;
     this.planEdgeNode = planEdgeNode;
     AssignId();
 }
コード例 #5
0
 public InterpretationPlanCheckCondition(expression.AreAttributesEqual condition, InterpretationPlanNodeMatcher nodeMatcher, int indexOfCorrespondingNode)
 {
     this.condition = condition;
     this.nodeMatcher = nodeMatcher;
     this.indexOfCorrespondingElement = indexOfCorrespondingNode;
     AssignId();
 }
コード例 #6
0
 public InterpretationPlanCheckConnectednessTheOther(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge, InterpretationPlanNodeMatcher theOther)
 {
     this.node = node;
     this.edge = edge;
     this.theOther = theOther;
     AssignId();
 }
コード例 #7
0
 public InterpretationPlanCheckConnectednessSourceOrTarget(InterpretationPlanNodeMatcher node, InterpretationPlanEdgeMatcher edge, InterpretationPlanDirectionVariable directionVariable)
 {
     this.node = node;
     this.edge = edge;
     this.directionVariable = directionVariable;
     AssignId();
 }