* a Relation between Elements
*/
protected GraphConnection createConnection(final Relation relation) {
Element target = cacheManager.getTargetOfRelation(relation);
Element source = cacheManager.getSourceOfRelation(relation);
GraphNode targetNode = getNodeForElement(target);
if (targetNode == null)
new Exception(relation + " has no vaild traget").printStackTrace();
GraphNode sourceNode = getNodeForElement(source);
if (sourceNode == null)
new Exception(relation + " has no vaild source").printStackTrace();
String weight = cacheManager.getRelationWeightString(relation);