]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java
Replace System.err and System.out with SLF4J Logging
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / ArrayPropertyLabelerFactory.java
index 77f141a2f8e5a87a47c59843691c8da8d59c5b4f..b41679b83fdfb6dc247647f370465c84a85ec120 100644 (file)
@@ -42,6 +42,8 @@ import org.simantics.db.management.ISessionContext;
 import org.simantics.layer0.Layer0;
 import org.simantics.utils.datastructures.ArrayMap;
 import org.simantics.utils.datastructures.slice.ValueRange;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
  * @author Tuukka Lehtonen
@@ -151,6 +153,12 @@ public class ArrayPropertyLabelerFactory implements LabelerFactory {
             }
             return null;
         }
+
+        @Override
+        public Logger getLogger() {
+            // TODO Auto-generated method stub
+            return null;
+        }
     }
 
     static class ArrayPropertyLabeler extends LazyGraphLabeler {
@@ -262,6 +270,11 @@ public class ArrayPropertyLabelerFactory implements LabelerFactory {
             }
             return null;
         }
+
+        @Override
+        public Logger getLogger() {
+            return LoggerFactory.getLogger(ArrayPropertyLabeler.class);
+        }
     };
 
 }