]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java
Fixing Logger fallout from commit 1dfeb7d5
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / ArrayPropertyLabelerFactory.java
index 2e1f33fa1c3312a6487128b02515209055bcc7dd..bd7cf6bbd4ba2b428fdd514066310d56a23bfafb 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.browsing.ui.graph.impl;\r
-\r
-import java.util.Map;\r
-\r
-import org.simantics.Simantics;\r
-import org.simantics.browsing.ui.BuiltinKeys;\r
-import org.simantics.browsing.ui.BuiltinKeys.LabelerKey;\r
-import org.simantics.browsing.ui.GraphExplorer.ModificationContext;\r
-import org.simantics.browsing.ui.NodeContext;\r
-import org.simantics.browsing.ui.PrimitiveQueryUpdater;\r
-import org.simantics.browsing.ui.common.ColumnKeys;\r
-import org.simantics.browsing.ui.common.modifiers.EnumerationValue;\r
-import org.simantics.browsing.ui.common.property.IArrayProperty;\r
-import org.simantics.browsing.ui.common.property.IProperty;\r
-import org.simantics.browsing.ui.content.Labeler;\r
-import org.simantics.browsing.ui.content.LabelerFactory;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.type.Component;\r
-import org.simantics.databoard.type.Datatype;\r
-import org.simantics.databoard.type.RecordType;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.common.primitiverequest.PossibleRelatedValue2;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.adapter.StringIndexModifier;\r
-import org.simantics.db.layer0.adapter.StringModifier;\r
-import org.simantics.db.layer0.adapter.TObjectIntPair;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.utils.datastructures.ArrayMap;\r
-import org.simantics.utils.datastructures.slice.ValueRange;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ArrayPropertyLabelerFactory implements LabelerFactory {\r
-\r
-    @Override\r
-    public Labeler create(PrimitiveQueryUpdater manager, NodeContext context, LabelerKey key) {\r
-        Object o = context.getConstant(BuiltinKeys.INPUT);\r
-        //System.out.println("ArrayPropertyLabelerFactory: " + o);\r
-        if (o instanceof IArrayProperty) {\r
-            return new ArrayPropertyLabeler(manager, context, key);\r
-        } else if (o instanceof IProperty) {\r
-            return new PropertyLabeler(manager, context, key);\r
-        }\r
-        return null;\r
-    }\r
-\r
-    static class PropertyLabeler extends LazyGraphLabeler {\r
-        NodeContext context;\r
-\r
-        public PropertyLabeler(PrimitiveQueryUpdater updater, NodeContext context, LabelerKey key) {\r
-            super(updater, context, key);\r
-            this.context = context;\r
-        }\r
-\r
-        @Override\r
-        public Map<String, String> labels(ReadGraph graph) throws DatabaseException {\r
-            IProperty prop = (IProperty) context.getConstant(BuiltinKeys.INPUT);\r
-            Resource[] r = prop.adapt(Resource[].class);\r
-            if (r == null)\r
-                return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { prop.toString(), "N/A" });\r
-\r
-//            System.out.println(prop + " [" + prop.getData(Resource[].class).length + "]");\r
-//            for (Resource rr : prop.getData(Resource[].class))\r
-//                System.out.println("  " + prop + "  " + NameUtils.getSafeName(graph, rr));\r
-\r
-            String property = "";\r
-            String value = "";\r
-\r
-            if (r.length == 3) {\r
-                property = LabelerUtil.safeStringRepresentation(graph, r[1]);\r
-                value = graph.getPossibleRelatedAdapter(r[0], r[1], String.class);\r
-                if (value == null)\r
-                    value = LabelerUtil.safeStringRepresentation(graph, r[2]);\r
-            }\r
-\r
-            //System.out.println("LABEL: " + property + " - " + value);\r
-            return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { property, value });\r
-        }\r
-\r
-        @Override\r
-        public Modifier getModifier(ModificationContext modificationContext, String key) {\r
-            final ISessionContext session = Simantics.getSessionContext();\r
-            if (session == null)\r
-                return null;\r
-\r
-            final IProperty prop = (IProperty) context.getConstant(BuiltinKeys.INPUT);\r
-            final Resource[] data = prop.adapt(Resource[].class);\r
-            if (data == null)\r
-                return null;\r
-            if (data.length != 3)\r
-                return null;\r
-\r
-            if (ColumnKeys.VALUE.equals(key)) {\r
-                try {\r
-                    // Make sure that the property is not read-only before editing\r
-                    Layer0 L0 = Layer0.getInstance(session.getSession());\r
-                    Boolean readOnly = session.getSession().syncRequest(new PossibleRelatedValue2<Boolean>(data[1], L0.readOnly, Bindings.BOOLEAN));\r
-                    if (Boolean.TRUE.equals(readOnly))\r
-                        return null;\r
-\r
-                    EnumerationValue<Resource> enu = session.getSession().syncRequest(new GetEnumerationValue(data[2]));\r
-                    if (enu != null) {\r
-                        return new GraphEnumerationModifier(session.getSession(), data[0], data[1], enu.getEnumeration(), enu.getEnumeratedValue());\r
-                    } else {\r
-                        final Resource subject = data[0], predicate = data[1], object = data[2];\r
-                        return new GraphFactoryStringModifier(subject, predicate, object, session.getSession()) {\r
-                            @Override\r
-                            public void doModify(WriteGraph graph, String label) throws DatabaseException {\r
-                                if (IProperty.ASSERTED.contains(prop.getType())) {\r
-                                    // 1. Instantiate new property based on default value and attach it to the module.\r
-                                    Layer0 L0 = Layer0.getInstance(graph);\r
-                                    Resource newValue = graph.newResource();\r
-                                    for (Resource type : graph.getObjects(object, L0.InstanceOf))\r
-                                        graph.claim(newValue, L0.InstanceOf, null, type);\r
-                                    if(!graph.hasStatement(newValue, L0.HasDataType)) {\r
-                                       Binding b = Bindings.getBindingUnchecked(Datatype.class);\r
-                                       Datatype dt = graph.getRelatedValue(object, L0.HasDataType, b);\r
-                                       graph.addLiteral(newValue, L0.HasDataType, L0.HasDataType_Inverse, L0.DataType, dt, b);\r
-                                    }\r
-                                    \r
-                                    graph.claim(subject, predicate, newValue);\r
-                                    // 2. Adapt StringModifier for the new property\r
-                                    StringModifier sm = graph.adapt(newValue, StringModifier.class);\r
-                                    // 3. Modify the new property with the specified label\r
-                                    sm.modify(graph, label);\r
-                                } else {\r
-                                    getModifier().modify(graph, label);\r
-                                }\r
-                            }\r
-                        };\r
-                    }\r
-                } catch (DatabaseException e) {\r
-                    throw new RuntimeException(e);\r
-                }\r
-            }\r
-            return null;\r
-        }\r
-    }\r
-\r
-    static class ArrayPropertyLabeler extends LazyGraphLabeler {\r
-        NodeContext context;\r
-\r
-        public ArrayPropertyLabeler(PrimitiveQueryUpdater updater, NodeContext context, LabelerKey key) {\r
-            super(updater, context, key);\r
-            this.context = context;\r
-        }\r
-\r
-        @Override\r
-        public Map<String, String> labels(ReadGraph graph) throws DatabaseException {\r
-            IArrayProperty prop = (IArrayProperty) context.getConstant(BuiltinKeys.INPUT);\r
-            ValueRange range = prop.getRange();\r
-            Resource[] r = prop.adapt(Resource[].class);\r
-            if (r == null)\r
-                return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { prop.toString(), "N/A" });\r
-\r
-            String property = "";\r
-            String value = "";\r
-\r
-            if (!prop.isSlice()) {\r
-                property = LabelerUtil.safeStringRepresentation(graph, r[1]);\r
-                String valueType = GraphPropertyUtil.tryGetValueTypeString(graph, r[2], range.size());\r
-                value = valueType;\r
-            } else if (range.isSingle()) {\r
-               Layer0 L0 = Layer0.getInstance(graph);\r
-                property = range.toString();\r
-                value = LabelerUtil.safeStringRepresentation(graph, r[2], range.start());\r
-                Datatype dt = graph.getPossibleRelatedValue(r[2], L0.HasDataType, Bindings.getBindingUnchecked(Datatype.class));\r
-                if(dt != null) {\r
-                       if(dt instanceof RecordType) {\r
-                               RecordType rt = (RecordType)dt;\r
-                               if(range.start() < rt.getComponentCount()) {\r
-                                       Component comp = rt.getComponent(range.start());\r
-                                       property = comp.name;\r
-                               }\r
-                       }\r
-                }\r
-            } else {\r
-                property = range.toString();\r
-            }\r
-\r
-            return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { property, value });\r
-            \r
-        }\r
-\r
-        @Override\r
-        public Modifier getModifier(ModificationContext modificationContext, String key) {\r
-            ISessionContext session = Simantics.getSessionContext();\r
-            if (session == null)\r
-                return null;\r
-\r
-            // Only single values can be edited.\r
-            final IArrayProperty prop = (IArrayProperty) context.getConstant(BuiltinKeys.INPUT);\r
-            if (!prop.getRange().isSingle())\r
-                return null;\r
-            final Resource[] data = prop.getData(Resource[].class);\r
-            if (data == null)\r
-                return null;\r
-            if (data.length != 3)\r
-                return null;\r
-\r
-            if (ColumnKeys.VALUE.equals(key)) {\r
-                // TODO: fix boolean array editing case to work with a combo box.\r
-                try {\r
-                    Layer0 L0 = Layer0.getInstance(session.getSession());\r
-                    Boolean readOnly = session.getSession().syncRequest(new PossibleRelatedValue2<Boolean>(data[1], L0.readOnly, Bindings.BOOLEAN));\r
-                    if (Boolean.TRUE.equals(readOnly))\r
-                        return null;\r
-\r
-                    return new GraphStringIndexModifier(context, session.getSession(), prop.getRange().start()) {\r
-//                    StringRepresentation representation;\r
-                        @Override\r
-                        protected void initializeGraphModifier(ReadGraph g) {\r
-//                        representation = g.adapt(getResourceToModify(), g.getBuiltins().HasStringRepresentationInterface);\r
-                        }\r
-                        @Override\r
-                        public TObjectIntPair<String> createModifierInput(String fromLabel) {\r
-                            return new TObjectIntPair<String>(fromLabel, prop.getRange().start());\r
-                        }\r
-                        @Override\r
-                        public void doModify(WriteGraph graph, TObjectIntPair<String> label) throws DatabaseException {\r
-                            //System.out.println("Performing modification for " + representation.get(graph));\r
-                            if (IProperty.ASSERTED.contains(prop.getType())) {\r
-                                // 1. Instantiate new property based on default value and attach it to the module.\r
-                                Layer0 L0 = Layer0.getInstance(graph);\r
-                                Resource module = data[0], attribute = data[1], defaultValue = data[2];\r
-                                Resource newValue = graph.newResource();\r
-                                for (Resource type : graph.getObjects(defaultValue, L0.InstanceOf))\r
-                                    graph.claim(newValue, L0.InstanceOf, null, type);\r
-                                graph.claim(module, attribute, newValue);\r
-                                Object defaultValueValue = graph.getValue(defaultValue);\r
-                                //if(defaultValueValue instanceof float[]) System.out.println("new property : " + Arrays.toString((float[])defaultValueValue));\r
-                                graph.claimValue(newValue, defaultValueValue);\r
-                                // 2. Adapt StringIndexModifier for the new property\r
-                                StringIndexModifier sm = graph.adapt(newValue, StringIndexModifier.class);\r
-                                // 3. Modify the new property with the specified label\r
-                                sm.modify(graph, label);\r
-                            } else {\r
-                                getModifier().modify(graph, label);\r
-                            }\r
-                        }\r
-                    };\r
-                } catch (DatabaseException e) {\r
-                    e.printStackTrace();\r
-                    return null;\r
-                }\r
-            }\r
-            return null;\r
-        }\r
-    };\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.browsing.ui.graph.impl;
+
+import java.util.Map;
+
+import org.simantics.Simantics;
+import org.simantics.browsing.ui.BuiltinKeys;
+import org.simantics.browsing.ui.BuiltinKeys.LabelerKey;
+import org.simantics.browsing.ui.GraphExplorer.ModificationContext;
+import org.simantics.browsing.ui.NodeContext;
+import org.simantics.browsing.ui.PrimitiveQueryUpdater;
+import org.simantics.browsing.ui.common.ColumnKeys;
+import org.simantics.browsing.ui.common.modifiers.EnumerationValue;
+import org.simantics.browsing.ui.common.property.IArrayProperty;
+import org.simantics.browsing.ui.common.property.IProperty;
+import org.simantics.browsing.ui.content.Labeler;
+import org.simantics.browsing.ui.content.LabelerFactory;
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.type.Component;
+import org.simantics.databoard.type.Datatype;
+import org.simantics.databoard.type.RecordType;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.common.primitiverequest.PossibleRelatedValue2;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.adapter.StringIndexModifier;
+import org.simantics.db.layer0.adapter.StringModifier;
+import org.simantics.db.layer0.adapter.TObjectIntPair;
+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
+ */
+public class ArrayPropertyLabelerFactory implements LabelerFactory {
+
+    @Override
+    public Labeler create(PrimitiveQueryUpdater manager, NodeContext context, LabelerKey key) {
+        Object o = context.getConstant(BuiltinKeys.INPUT);
+        //System.out.println("ArrayPropertyLabelerFactory: " + o);
+        if (o instanceof IArrayProperty) {
+            return new ArrayPropertyLabeler(manager, context, key);
+        } else if (o instanceof IProperty) {
+            return new PropertyLabeler(manager, context, key);
+        }
+        return null;
+    }
+
+    static class PropertyLabeler extends LazyGraphLabeler {
+        NodeContext context;
+
+        public PropertyLabeler(PrimitiveQueryUpdater updater, NodeContext context, LabelerKey key) {
+            super(updater, context, key);
+            this.context = context;
+        }
+
+        @Override
+        public Map<String, String> labels(ReadGraph graph) throws DatabaseException {
+            IProperty prop = (IProperty) context.getConstant(BuiltinKeys.INPUT);
+            Resource[] r = prop.adapt(Resource[].class);
+            if (r == null)
+                return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { prop.toString(), "N/A" });
+
+//            System.out.println(prop + " [" + prop.getData(Resource[].class).length + "]");
+//            for (Resource rr : prop.getData(Resource[].class))
+//                System.out.println("  " + prop + "  " + NameUtils.getSafeName(graph, rr));
+
+            String property = "";
+            String value = "";
+
+            if (r.length == 3) {
+                property = LabelerUtil.safeStringRepresentation(graph, r[1]);
+                value = graph.getPossibleRelatedAdapter(r[0], r[1], String.class);
+                if (value == null)
+                    value = LabelerUtil.safeStringRepresentation(graph, r[2]);
+            }
+
+            //System.out.println("LABEL: " + property + " - " + value);
+            return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { property, value });
+        }
+
+        @Override
+        public Modifier getModifier(ModificationContext modificationContext, String key) {
+            final ISessionContext session = Simantics.getSessionContext();
+            if (session == null)
+                return null;
+
+            final IProperty prop = (IProperty) context.getConstant(BuiltinKeys.INPUT);
+            final Resource[] data = prop.adapt(Resource[].class);
+            if (data == null)
+                return null;
+            if (data.length != 3)
+                return null;
+
+            if (ColumnKeys.VALUE.equals(key)) {
+                try {
+                    // Make sure that the property is not read-only before editing
+                    Layer0 L0 = Layer0.getInstance(session.getSession());
+                    Boolean readOnly = session.getSession().syncRequest(new PossibleRelatedValue2<Boolean>(data[1], L0.readOnly, Bindings.BOOLEAN));
+                    if (Boolean.TRUE.equals(readOnly))
+                        return null;
+
+                    EnumerationValue<Resource> enu = session.getSession().syncRequest(new GetEnumerationValue(data[2]));
+                    if (enu != null) {
+                        return new GraphEnumerationModifier(session.getSession(), data[0], data[1], enu.getEnumeration(), enu.getEnumeratedValue());
+                    } else {
+                        final Resource subject = data[0], predicate = data[1], object = data[2];
+                        return new GraphFactoryStringModifier(subject, predicate, object, session.getSession()) {
+                            @Override
+                            public void doModify(WriteGraph graph, String label) throws DatabaseException {
+                                if (IProperty.ASSERTED.contains(prop.getType())) {
+                                    // 1. Instantiate new property based on default value and attach it to the module.
+                                    Layer0 L0 = Layer0.getInstance(graph);
+                                    Resource newValue = graph.newResource();
+                                    for (Resource type : graph.getObjects(object, L0.InstanceOf))
+                                        graph.claim(newValue, L0.InstanceOf, null, type);
+                                    if(!graph.hasStatement(newValue, L0.HasDataType)) {
+                                       Binding b = Bindings.getBindingUnchecked(Datatype.class);
+                                       Datatype dt = graph.getRelatedValue(object, L0.HasDataType, b);
+                                       graph.addLiteral(newValue, L0.HasDataType, L0.HasDataType_Inverse, L0.DataType, dt, b);
+                                    }
+                                    
+                                    graph.claim(subject, predicate, newValue);
+                                    // 2. Adapt StringModifier for the new property
+                                    StringModifier sm = graph.adapt(newValue, StringModifier.class);
+                                    // 3. Modify the new property with the specified label
+                                    sm.modify(graph, label);
+                                } else {
+                                    getModifier().modify(graph, label);
+                                }
+                            }
+                        };
+                    }
+                } catch (DatabaseException e) {
+                    throw new RuntimeException(e);
+                }
+            }
+            return null;
+        }
+
+        @Override
+        public Logger getLogger() {
+            return LoggerFactory.getLogger(PropertyLabeler.class);
+        }
+    }
+
+    static class ArrayPropertyLabeler extends LazyGraphLabeler {
+        NodeContext context;
+
+        public ArrayPropertyLabeler(PrimitiveQueryUpdater updater, NodeContext context, LabelerKey key) {
+            super(updater, context, key);
+            this.context = context;
+        }
+
+        @Override
+        public Map<String, String> labels(ReadGraph graph) throws DatabaseException {
+            IArrayProperty prop = (IArrayProperty) context.getConstant(BuiltinKeys.INPUT);
+            ValueRange range = prop.getRange();
+            Resource[] r = prop.adapt(Resource[].class);
+            if (r == null)
+                return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { prop.toString(), "N/A" });
+
+            String property = "";
+            String value = "";
+
+            if (!prop.isSlice()) {
+                property = LabelerUtil.safeStringRepresentation(graph, r[1]);
+                String valueType = GraphPropertyUtil.tryGetValueTypeString(graph, r[2], range.size());
+                value = valueType;
+            } else if (range.isSingle()) {
+               Layer0 L0 = Layer0.getInstance(graph);
+                property = range.toString();
+                value = LabelerUtil.safeStringRepresentation(graph, r[2], range.start());
+                Datatype dt = graph.getPossibleRelatedValue(r[2], L0.HasDataType, Bindings.getBindingUnchecked(Datatype.class));
+                if(dt != null) {
+                       if(dt instanceof RecordType) {
+                               RecordType rt = (RecordType)dt;
+                               if(range.start() < rt.getComponentCount()) {
+                                       Component comp = rt.getComponent(range.start());
+                                       property = comp.name;
+                               }
+                       }
+                }
+            } else {
+                property = range.toString();
+            }
+
+            return new ArrayMap<String, String>(ColumnKeys.KEYS_PROPERTY_VALUE, new String[] { property, value });
+            
+        }
+
+        @Override
+        public Modifier getModifier(ModificationContext modificationContext, String key) {
+            ISessionContext session = Simantics.getSessionContext();
+            if (session == null)
+                return null;
+
+            // Only single values can be edited.
+            final IArrayProperty prop = (IArrayProperty) context.getConstant(BuiltinKeys.INPUT);
+            if (!prop.getRange().isSingle())
+                return null;
+            final Resource[] data = prop.getData(Resource[].class);
+            if (data == null)
+                return null;
+            if (data.length != 3)
+                return null;
+
+            if (ColumnKeys.VALUE.equals(key)) {
+                // TODO: fix boolean array editing case to work with a combo box.
+                try {
+                    Layer0 L0 = Layer0.getInstance(session.getSession());
+                    Boolean readOnly = session.getSession().syncRequest(new PossibleRelatedValue2<Boolean>(data[1], L0.readOnly, Bindings.BOOLEAN));
+                    if (Boolean.TRUE.equals(readOnly))
+                        return null;
+
+                    return new GraphStringIndexModifier(context, session.getSession(), prop.getRange().start()) {
+//                    StringRepresentation representation;
+                        @Override
+                        protected void initializeGraphModifier(ReadGraph g) {
+//                        representation = g.adapt(getResourceToModify(), g.getBuiltins().HasStringRepresentationInterface);
+                        }
+                        @Override
+                        public TObjectIntPair<String> createModifierInput(String fromLabel) {
+                            return new TObjectIntPair<String>(fromLabel, prop.getRange().start());
+                        }
+                        @Override
+                        public void doModify(WriteGraph graph, TObjectIntPair<String> label) throws DatabaseException {
+                            //System.out.println("Performing modification for " + representation.get(graph));
+                            if (IProperty.ASSERTED.contains(prop.getType())) {
+                                // 1. Instantiate new property based on default value and attach it to the module.
+                                Layer0 L0 = Layer0.getInstance(graph);
+                                Resource module = data[0], attribute = data[1], defaultValue = data[2];
+                                Resource newValue = graph.newResource();
+                                for (Resource type : graph.getObjects(defaultValue, L0.InstanceOf))
+                                    graph.claim(newValue, L0.InstanceOf, null, type);
+                                graph.claim(module, attribute, newValue);
+                                Object defaultValueValue = graph.getValue(defaultValue);
+                                //if(defaultValueValue instanceof float[]) System.out.println("new property : " + Arrays.toString((float[])defaultValueValue));
+                                graph.claimValue(newValue, defaultValueValue);
+                                // 2. Adapt StringIndexModifier for the new property
+                                StringIndexModifier sm = graph.adapt(newValue, StringIndexModifier.class);
+                                // 3. Modify the new property with the specified label
+                                sm.modify(graph, label);
+                            } else {
+                                getModifier().modify(graph, label);
+                            }
+                        }
+                    };
+                } catch (DatabaseException e) {
+                    e.printStackTrace();
+                    return null;
+                }
+            }
+            return null;
+        }
+
+        @Override
+        public Logger getLogger() {
+            return LoggerFactory.getLogger(ArrayPropertyLabeler.class);
+        }
+    };
+
+}