]> gerrit.simantics Code Review - simantics/3d.git/blobdiff - org.simantics.g3d/src/org/simantics/g3d/property/MethodWithMapValueProvider.java
Allow property tab contribution from all INodes.
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / property / MethodWithMapValueProvider.java
index 256de3acc4bc0f31bae759f98831b10cda89f826..eeae0dc89499dab28966d6083af0b74f977cfb5d 100644 (file)
@@ -1,3 +1,14 @@
+/*******************************************************************************\r
+ * Copyright (c) 2012, 2013 Association for Decentralized Information Management in\r
+ * 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.g3d.property;\r
 \r
 import java.lang.reflect.Method;\r
@@ -18,9 +29,11 @@ public class MethodWithMapValueProvider implements ValueProvider {
        \r
        @Override\r
        public Object getValue(Object obj) throws Exception{\r
+               @SuppressWarnings("unchecked")\r
                Map<String,Object> map = (Map<String, Object>)getter.invoke(obj);\r
                return map.get(key);\r
        }\r
+       @SuppressWarnings("unchecked")\r
        @Override\r
        public void setValue(Object obj, Object value) throws Exception {\r
                Map<String,Object> map = new HashMap<String, Object>();\r