aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/dnf/callback/QueryCallback2.java
blob: 9493a7b4af915a7cea1b7f2b8b606ed5883da090 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.dnf.callback;

import tools.refinery.store.query.dnf.QueryBuilder;
import tools.refinery.store.query.term.NodeVariable;

@FunctionalInterface
public interface QueryCallback2 {
	void accept(QueryBuilder builder, NodeVariable p1, NodeVariable p2);
}