server/src/main/java/org/iri_research/renkan/models/Edge.java
changeset 60 6a3084c7eb98
parent 47 267d67791e05
child 71 9af0874ce43f
--- a/server/src/main/java/org/iri_research/renkan/models/Edge.java	Thu Feb 14 10:39:24 2013 +0100
+++ b/server/src/main/java/org/iri_research/renkan/models/Edge.java	Thu Feb 14 12:16:49 2013 +0100
@@ -18,8 +18,8 @@
 	private String created_by;
 	
 
-	public Edge(String id, String title, String description, String uri, Node from, Node to, String created_by, String project_id) {
-		super(id,title, description, uri);
+	public Edge(String id, String title, String description, String uri, String color, Node from, Node to, String created_by, String project_id) {
+		super(id,title, description, uri, color);
 		this.from = from;
 		this.to = to;
 		this.created_by = created_by;