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

import tools.refinery.store.representation.AnySymbol;

public sealed interface AnyInterpretation permits Interpretation {
	Model getModel();

	AnySymbol getSymbol();

	long getSize();
}