1 /*******************************************************************************
\r
2 * Copyright (c) 2010 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.browser.contributions;
\r
14 import org.simantics.browsing.ui.graph.contributor.labeler.LabelerContributor;
\r
15 import org.simantics.db.ReadGraph;
\r
16 import org.simantics.db.Resource;
\r
17 import org.simantics.db.exception.DatabaseException;
\r
18 import org.simantics.layer0.Layer0;
\r
19 import org.simantics.operation.Layer0X;
\r
20 import org.simantics.sysdyn.ui.browser.nodes.ModuleNode;
\r
22 public class ModuleLabeler extends LabelerContributor<ModuleNode>{
\r
25 public String getLabel(ReadGraph graph, ModuleNode module) throws DatabaseException {
\r
26 Layer0 l0 = Layer0.getInstance(graph);
\r
27 Layer0X L0X = Layer0X.getInstance(graph);
\r
28 Resource resource = module.data;
\r
29 StringBuilder sb = new StringBuilder();
\r
30 for(Resource r : graph.getObjects(resource, l0.HasName))
\r
31 sb.append(graph.getValue(r));
\r
32 if(graph.isInstanceOf(resource, L0X.Realization)) {
\r
33 resource = graph.getPossibleObject(resource, L0X.Represents);
\r
34 if(resource == null) return sb.toString();
\r
37 for(Resource t : graph.getObjects(resource, l0.InstanceOf))
\r
38 for(Resource r : graph.getObjects(t, l0.HasName))
\r
39 sb.append(graph.getValue(r));
\r
40 return sb.toString();
\r