aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store/src/main/java/tools/refinery/store/representation/AnyAbstractDomain.java
blob: c354fab703caf1ccef3e924893bd6da465999894 (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.store.representation;

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

	Class<?> concreteType();
}