Skip to content
Snippets Groups Projects
Commit 14ba03d9 authored by Sören Henning's avatar Sören Henning
Browse files

removed unused enum DotExportPropertyTokens

parent ff5e5f36
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
Pipeline #
package kieker.analysis.trace.graphoutput;
import java.util.HashMap;
import java.util.Map;
import kieker.analysis.util.graph.Graph;
import kieker.analysis.util.graph.export.dot.DotExportPropertyTokens;
import teetime.stage.basic.AbstractTransformation;
public class DotTraceStyleStage extends AbstractTransformation<Graph, Graph> {
private final Map<String, String> nodeStyling = new HashMap<>();
// private final Map<String, String> nodeStyling = new HashMap<>();
public DotTraceStyleStage() {
super();
nodeStyling.put("shape", "none");
// nodeStyling.put("shape", "none"); // TODO add
}
@Override
protected void execute(final Graph graph) {
graph.setProperty(DotExportPropertyTokens.DEFAULT_NODE_PROPERTIES, nodeStyling);
// graph.setProperty(DotExportPropertyTokens.DEFAULT_NODE_PROPERTIES, nodeStyling);
this.getOutputPort().send(graph);
}
......
package kieker.analysis.util.graph.export.dot;
public final class DotExportPropertyTokens {
public static final String DEFAULT_NODE_PROPERTIES = "__DEFAULT_NODE_PROPERTIES";
public static final String DEFAULT_EDGE_PROPERTIES = "__DEFAULT_EDGE_PROPERTIES";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment