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

updated TODO comments

parent aa2611ce
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
......@@ -28,10 +28,10 @@ public class GraphTransformer extends AbstractTransformer<String> {
GraphTransformer graphTransformer = new GraphTransformer(childGraph, false);
String childGraphString = graphTransformer.transform();
dotBuilder.addSubgraph(childGraphString);
// TODO Add style, label, etc
} else {
dotBuilder.addNode(vertex.getId().toString());
// TODO Add style, label, etc
// TODO Handle child graph
}
}
......
......@@ -83,7 +83,11 @@ public class GraphImpl implements Graph {
}
}
// TODO Maybe: Check whether both vertices are in the same graph
// TODO Check whether both vertices have the same root graph
// TODO If not, don't add the edge and throw exception
// TODO Check whether both vertices are in the same graph
// TODO If not, add edge to the "higher" one
final Edge edge = new EdgeImpl(idString, outVertex, inVertex, this);
this.edges.put(edge.getId().toString(), edge);
......
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