]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
0640bc34073c98136b3038c2d64b31272e2ee08f
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2012 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.ui.properties.widgets.modules;\r
13 \r
14 import java.util.HashMap;\r
15 import java.util.Map;\r
16 \r
17 import org.simantics.browsing.ui.model.labels.LabelRule;\r
18 import org.simantics.db.ReadGraph;\r
19 import org.simantics.db.exception.DatabaseException;\r
20 import org.simantics.sysdyn.ui.properties.widgets.ColumnKeys;\r
21 \r
22 public class ParameterLabelRule implements LabelRule {\r
23 \r
24     @Override\r
25     public boolean isCompatible(Class<?> contentType) {\r
26         return contentType.equals(Object.class);\r
27     }\r
28 \r
29     @Override\r
30     public Map<String, String> getLabel(ReadGraph graph, Object content) throws DatabaseException {\r
31         Map<String, String> result = new HashMap<String, String>();\r
32 \r
33         if(content instanceof ParameterNode) {\r
34             ParameterNode node = (ParameterNode) content;\r
35             String parameterExpression = ModuleParameterOverrideUtils.getParameterExpressionOrOverride(graph, node.getParent(), node.getIndependentVariable());\r
36             String name = node.getIndependentVariable().getName();\r
37 \r
38             result.put(ColumnKeys.MODULE_PARAMETER, name);\r
39             result.put(ColumnKeys.VALUE, parameterExpression);\r
40         }\r
41         return result;\r
42     }\r
43 \r
44 }\r