]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/labelers/LabelerStub.java
122c9ed5115636bcf2680c2ce45da91b61b41da6
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / labelers / LabelerStub.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in 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.browsing.ui.common.labelers;\r
13 \r
14 import java.util.Map;\r
15 \r
16 import org.simantics.browsing.ui.GraphExplorer.ModificationContext;\r
17 import org.simantics.browsing.ui.content.Labeler;\r
18 \r
19 /**\r
20  * A stub implementation of Labeler.\r
21  * \r
22  * @author Tuukka Lehtonen\r
23  */\r
24 public class LabelerStub implements Labeler {\r
25 \r
26     protected LabelerContent content = LabelerContent.NO_CONTENT;\r
27 \r
28     public LabelerStub() {\r
29     }\r
30 \r
31     public LabelerStub(LabelerContent content) {\r
32         if (content == null)\r
33             throw new NullPointerException(this + " tried to initialize with null content");\r
34         this.content = content;\r
35     }\r
36 \r
37     public void setContent(LabelerContent content) {\r
38         if (content == null)\r
39             throw new NullPointerException(this + " tried to set null content");\r
40         this.content = content;\r
41     }\r
42 \r
43     @Override\r
44     public Map<String, String> getLabels() {\r
45         return content.labels;\r
46     }\r
47 \r
48     @Override\r
49     public Map<String, String> getRuntimeLabels() {\r
50         return null;\r
51     }\r
52 \r
53     @Override\r
54     public int getCategory() {\r
55         return content.category;\r
56     }\r
57 \r
58     @Override\r
59     public Modifier getModifier(ModificationContext context, String key) {\r
60         return null;\r
61     }\r
62 \r
63     @Override\r
64     public void setListener(LabelerListener listener) {\r
65     }\r
66 \r
67 }\r