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

added todos

parent 1259b738
No related branches found
No related tags found
1 merge request!19Trace aggr analysis
......@@ -22,14 +22,17 @@ public class OperationsDependencyGraphCreatorStage extends AbstractTransformatio
for (Container container : softwareSystem.getContainers()) {
Vertex containerVertex = graph.addVertex(container.getIdentifier());
// TODO add properties
for (Component component : container.getComponents()) {
Vertex componentVertex = graph.addVertex(component.getIdentifier());
// TODO add properties
for (Operation operation : component.getOperations()) {
Vertex operationVertex = graph.addVertex(operation.getIdentifier());
// TODO add 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