/* * SPDX-FileCopyrightText: 2023 The Refinery Authors * * SPDX-License-Identifier: EPL-2.0 */ package tools.refinery.store.dse.transition.actions; import tools.refinery.store.model.Model; import tools.refinery.logic.term.NodeVariable; import java.util.List; public interface ActionLiteral { List getInputVariables(); List getOutputVariables(); BoundActionLiteral bindToModel(Model model); }