if (location.indexOf('!') != -1) {
temp.label = temp.label + "\\n(" + location.substring(location.indexOf('!')) + ")";
location = location.substring(0, location.indexOf('!'));
}
}
SiteGraphNode to = graph.findNode(location, temp.node);
if (to != null) {
graph.addLink(new Link(temp.node, to, temp.typeResult, temp.label));
}
}