public JoinNode buildJoinNode( int id, LeftTupleSource leftInput, ObjectSource rightInput, BetaConstraints binder, BuildContext context ) {
return new ReteJoinNode( id, leftInput, rightInput, binder, context );
}
public NotNode buildNotNode( int id, LeftTupleSource leftInput, ObjectSource rightInput, BetaConstraints binder, BuildContext context ) {
return new ReteNotNode( id, leftInput, rightInput, binder, context );
}