From 52094869b9f7b65bcdc9caf6763fde6cb31e127c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <stu114708@informatik.uni-kiel.de> Date: Mon, 23 May 2016 11:00:57 +0200 Subject: [PATCH] added todos --- .../analysis/dev/OperationsDependencyGraphCreatorStage.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/kieker/analysis/dev/OperationsDependencyGraphCreatorStage.java b/src/main/java/kieker/analysis/dev/OperationsDependencyGraphCreatorStage.java index 31351940..42533b82 100644 --- a/src/main/java/kieker/analysis/dev/OperationsDependencyGraphCreatorStage.java +++ b/src/main/java/kieker/analysis/dev/OperationsDependencyGraphCreatorStage.java @@ -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 } } -- GitLab