]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/labels/LabelContribution.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / labels / LabelContribution.java
1 /*******************************************************************************
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
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
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.labels;
13
14 import java.util.Collections;
15 import java.util.Map;
16
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;
27
28 /**
29  * Produces labels for nodes of given node type.
30  * @author Hannu Niemistö
31  */
32 public class LabelContribution extends VisualsContribution {
33     LabelRule labelRule;
34     
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()
39                 ))
40             throw new InvalidContribution("Label rule is not compatible with the content type.");
41         this.labelRule = labelRule;
42     }
43        
44     /**
45      * Returns a label for the node or null, if contribution is
46      * not suitable for the input.
47      */
48     public Map<String, String> getLabel(ReadGraph graph, NodeContext context) {
49         Object content = context.getConstant(BuiltinKeys.INPUT);
50         try {
51             if(test == null || test.test(graph, content))            
52                 return labelRule.getLabel(graph, content);
53             else
54                 return null;
55         } catch(DatabaseException e) {
56             ErrorLogger.defaultLogError(e);
57                 //Logger.defaultLogError(e);
58             // TODO reconsider
59             return Collections.singletonMap(ColumnKeys.SINGLE, "");
60         }
61     }    
62 }