System.out.println("Selecionado matrix com " + getMatrix().getNodes().size() + " nodes.");
UndirectedSparseMultigraph<String, String> graphMulti = new UndirectedSparseMultigraph<>();
UndirectedSparseGraph<String, String> graph = new UndirectedSparseGraph<>();
List<String> files = new ArrayList<>();
for (int i = 0; i < getMatrix().getNodes().size(); i++) {
EntityMatrixNode node = getMatrix().getNodes().get(i);
String[] coluns = node.getLine().split(JsfUtil.TOKEN_SEPARATOR);
colectFile(files, coluns[2]);
graph.addEdge(
coluns[2] + "(" + i + ")",
coluns[1],
coluns[0],