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

old version

parent be4301d4
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
package kieker.analysis.dev;
import kieker.analysis.domain.AggregatedOperationCall;
import kieker.analysis.domain.OperationsDependency;
import kieker.analysis.util.graph.Graph;
import kieker.analysis.util.graph.Vertex;
import kieker.analysis.util.graph.impl.GraphImpl;
import teetime.stage.basic.AbstractTransformation;
public class DependencyGraphCreatorStage extends AbstractTransformation<OperationsDependency, Graph> {
@Override
protected void execute(final OperationsDependency operationsDependency) {
Graph graph = new GraphImpl();
for (AggregatedOperationCall call : operationsDependency.getOperations()) {
Vertex vertex = graph.addVertex(call.hashCode());
// vertex.setProperty("", call.get);
}
}
}
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