aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse-visualization/src/main/java/tools/refinery/visualization/ModelVisualizerStoreAdapter.java
blob: 46663b2a1ecd82b7f156e426a6a3d89ba9ee0545 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.visualization;

import tools.refinery.store.adapter.ModelStoreAdapter;
import tools.refinery.visualization.internal.FileFormat;

import java.util.Set;

public interface ModelVisualizerStoreAdapter extends ModelStoreAdapter {

	String getOutputPath();

	boolean isRenderDesignSpace();

	boolean isRenderStates();

	Set<FileFormat> getFormats();
}