/* * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors * * 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); }