]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
2b4cdcbf624852245cc52f9379e9249f9e30cb23
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in\r
3  * 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.sysdyn.ui.properties.widgets;\r
13 \r
14 import org.simantics.browsing.ui.swt.widgets.impl.ReadFactoryImpl;\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.utils.datastructures.Quad;\r
19 \r
20 \r
21 \r
22 public class FunctionLabelFactory  extends ReadFactoryImpl<Resource, String> {\r
23 \r
24     private final String propertyURI;\r
25     private boolean end;\r
26     \r
27     public FunctionLabelFactory(String propertyURI, boolean end) {\r
28         this.propertyURI = propertyURI;\r
29         this.end = end;\r
30     }\r
31 \r
32     @Override\r
33     public Object getIdentity(Object inputContents) {\r
34         return new Quad<Resource, String, Object, Boolean>((Resource) inputContents, propertyURI, getClass(), end);\r
35     }\r
36 \r
37         \r
38     @Override\r
39     public String perform(ReadGraph graph, Resource resource) throws DatabaseException {\r
40         String value = graph.getPossibleRelatedValue(resource, graph.getResource(propertyURI));\r
41         if(end) {\r
42                 return "end " + value + ";";\r
43         } else {\r
44                 return "function " + value;\r
45         }\r
46     }\r
47         \r
48         \r
49 }\r