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