]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/PropertyUpdateRule.java
Separate DB and non-DB code to different structural sync bundles
[simantics/platform.git] / bundles / org.simantics.structural.synchronization.client / src / org / simantics / structural / synchronization / base / PropertyUpdateRule.java
diff --git a/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/PropertyUpdateRule.java b/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/PropertyUpdateRule.java
deleted file mode 100644 (file)
index a0b734d..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package org.simantics.structural.synchronization.base;
-
-import java.util.Collection;
-import java.util.Map;
-
-import org.simantics.databoard.binding.mutable.Variant;
-import org.simantics.structural.synchronization.utils.ComponentBase;
-
-
-public interface PropertyUpdateRule<T extends ComponentBase<T>> {
-
-    String getPropertyName();    
-    void apply(ModuleUpdateContext<T> context, boolean isCreating, 
-            Map<String, Variant> propertyMap,
-            Map<String, Collection<String>> connectionMap,
-            Variant value);
-
-}