aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/dnf/callback/QueryCallback3.java
blob: 358c7da770f6ea3518fd99cc579ea9e0aa9ff948 (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 QueryCallback3 {
	void accept(QueryBuilder builder, NodeVariable p1, NodeVariable p2, NodeVariable p3);
}