aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/logic/src/main/java/tools/refinery/logic/AnyAbstractDomain.java
blob: a296f4b248da4002c95c57f190f84bacbf7952a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.logic;

public sealed interface AnyAbstractDomain permits AbstractDomain {
	Class<?> abstractType();

	Class<?> concreteType();
}