]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser/model/Information.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser / model / Information.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.modeling.ui.modelBrowser.model;\r
13 \r
14 import java.util.Collection;\r
15 import java.util.Collections;\r
16 \r
17 import org.eclipse.jface.resource.ImageDescriptor;\r
18 import org.simantics.db.ReadGraph;\r
19 import org.simantics.db.Resource;\r
20 \r
21 @Deprecated\r
22 public class Information extends Node {\r
23 \r
24     String label;\r
25 \r
26     public Information(Resource resource) {\r
27         super(resource);\r
28         this.label = "Pending...";\r
29     }\r
30 \r
31     public Information(String label, Resource resource) {\r
32         super(resource);\r
33         this.label = label;\r
34     }\r
35 \r
36     @Override\r
37     public String getLabel(ReadGraph g) {\r
38         return label;\r
39     }\r
40 \r
41     @Override\r
42     public Collection<?> getChildren(ReadGraph g) {\r
43         return Collections.emptyList();\r
44     }\r
45 \r
46     @Override\r
47     public ImageDescriptor getImage(ReadGraph g) {\r
48         return null;\r
49     }\r
50 \r
51     @SuppressWarnings("unchecked")\r
52     @Override\r
53     public Object getAdapter(Class adapter) {\r
54         // deny adaptability, prevent showing of properties this way.\r
55         return null;\r
56     }\r
57 \r
58 }\r