1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2012 Association for Decentralized Information Management in
\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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.ui.properties.widgets.modules;
\r
14 import java.util.HashMap;
\r
15 import java.util.Map;
\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
22 public class ParameterLabelRule implements LabelRule {
\r
25 public boolean isCompatible(Class<?> contentType) {
\r
26 return contentType.equals(Object.class);
\r
30 public Map<String, String> getLabel(ReadGraph graph, Object content) throws DatabaseException {
\r
31 Map<String, String> result = new HashMap<String, String>();
\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
38 result.put(ColumnKeys.MODULE_PARAMETER, name);
\r
39 result.put(ColumnKeys.VALUE, parameterExpression);
\r