1 /*******************************************************************************
2 * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.browsing.ui.model.labels;
14 import java.util.Collections;
17 import org.simantics.browsing.ui.BuiltinKeys;
18 import org.simantics.browsing.ui.NodeContext;
19 import org.simantics.browsing.ui.common.ColumnKeys;
20 import org.simantics.browsing.ui.common.ErrorLogger;
21 import org.simantics.browsing.ui.model.InvalidContribution;
22 import org.simantics.browsing.ui.model.nodetypes.NodeType;
23 import org.simantics.browsing.ui.model.tests.Test;
24 import org.simantics.browsing.ui.model.visuals.VisualsContribution;
25 import org.simantics.db.ReadGraph;
26 import org.simantics.db.exception.DatabaseException;
29 * Produces labels for nodes of given node type.
30 * @author Hannu Niemistö
32 public class LabelContribution extends VisualsContribution {
35 public LabelContribution(NodeType nodeType, Test test, LabelRule labelRule, double priority) throws InvalidContribution {
36 super(nodeType, test, priority);
37 if(!labelRule.isCompatible(
38 nodeType.getContentType()
40 throw new InvalidContribution("Label rule is not compatible with the content type.");
41 this.labelRule = labelRule;
45 * Returns a label for the node or null, if contribution is
46 * not suitable for the input.
48 public Map<String, String> getLabel(ReadGraph graph, NodeContext context) {
49 Object content = context.getConstant(BuiltinKeys.INPUT);
51 if(test == null || test.test(graph, content))
52 return labelRule.getLabel(graph, content);
55 } catch(DatabaseException e) {
56 ErrorLogger.defaultLogError(e);
57 //Logger.defaultLogError(e);
59 return Collections.singletonMap(ColumnKeys.SINGLE, "");