]> gerrit.simantics Code Review - simantics/interop.git/blobdiff - org.simantics.interop.update/src/org/simantics/interop/update/model/UpdateNode.java
Generinc UpdateEditor
[simantics/interop.git] / org.simantics.interop.update / src / org / simantics / interop / update / model / UpdateNode.java
index e1312bfac3fb1d38d0caa869599290fc9a8a0319..da78b9016638aceb359281f304cdcf2a8844c0ee 100644 (file)
@@ -13,7 +13,7 @@ import org.simantics.db.exception.ServiceException;
 import org.simantics.db.exception.ValidationException;
 import org.simantics.layer0.Layer0;
 
-public abstract class UpdateNode {
+public class UpdateNode {
 
        public enum Status {EXIST,DELETED,NEW,CONTAINS};
        
@@ -69,7 +69,9 @@ public abstract class UpdateNode {
                children.add(node);
        }
 
-       public abstract ImageDescriptor getImage(ReadGraph graph) throws DatabaseException;
+       public ImageDescriptor getImage(ReadGraph graph) throws DatabaseException {
+               return null;
+       }
 
        public String getLabel(ReadGraph graph) throws DatabaseException {
                return getLabel(graph,r);