X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.graph.impl%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fgraph%2Fimpl%2FArrayPropertyLabelerFactory.java;h=b41679b83fdfb6dc247647f370465c84a85ec120;hp=77f141a2f8e5a87a47c59843691c8da8d59c5b4f;hb=1dfeb7d5c49b1391cd9d877e1eddab18995cb151;hpb=c13c4179bda758e77fe1f2032d3c4268bb9e3120 diff --git a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java index 77f141a2f..b41679b83 100644 --- a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java +++ b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java @@ -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); + } }; }