]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
718b9b2a1572ae803a90035d23d0862532e378e4
[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.trend.chart.properties;\r
13 \r
14 import org.simantics.browsing.ui.swt.widgets.impl.SelectionListenerImpl;\r
15 import org.simantics.databoard.Bindings;\r
16 import org.simantics.db.Resource;\r
17 import org.simantics.db.WriteGraph;\r
18 import org.simantics.db.common.request.ObjectsWithType;\r
19 import org.simantics.db.exception.DatabaseException;\r
20 import org.simantics.db.management.ISessionContext;\r
21 import org.simantics.layer0.Layer0;\r
22 \r
23 /**\r
24  * Class for setting a boolean value when a selection occurs. (check box buttons)\r
25  * \r
26  * @author Teemu Lempinen\r
27  *\r
28  */\r
29 public class BooleanSelectionListener extends SelectionListenerImpl<Resource> {\r
30 \r
31     final private String propertyURI;\r
32     final private String typeUri;\r
33     \r
34     /**\r
35      * Boolean selection listener for property with propertyURI\r
36      * \r
37      * @param context ISessionContext\r
38      * @param propertyURI uri of the boolean property\r
39      */\r
40     public BooleanSelectionListener(ISessionContext context, String propertyURI) {\r
41         this(context, null, propertyURI);\r
42     }\r
43 \r
44     /**\r
45      * Boolean selection listener for property with propertyURI\r
46      * Sets the property for all ObjectWithType(resource, L0.ConsistsOf, type)\r
47      * \r
48      * @param context ISessionContext\r
49      * @param typeUri URI for a resource (resource ConsistsOf type) (null allowed -> not used)\r
50      * @param propertyURI uri of the boolean property\r
51      */\r
52     public BooleanSelectionListener(ISessionContext context, String typeUri, String propertyURI) {\r
53         super(context);\r
54         this.propertyURI = propertyURI;\r
55         this.typeUri = typeUri;\r
56     }\r
57 \r
58     @Override\r
59     public void apply(WriteGraph graph, Resource chart) throws DatabaseException {\r
60         if(typeUri == null) {\r
61             setValue(graph, chart);\r
62         } else {\r
63             Resource type =  graph.getResource(typeUri);\r
64             for(Resource object : graph.syncRequest(new ObjectsWithType(chart, Layer0.getInstance(graph).ConsistsOf, type))) {\r
65                 setValue(graph, object);\r
66             }\r
67         }\r
68             \r
69     }\r
70     \r
71     /**\r
72      * Set boolean value for Boolean literal resource (inverts the current value).\r
73      * @param graph ReadGraph\r
74      * @param resource Boolean literal resource\r
75      * @throws DatabaseException\r
76      */\r
77     private void setValue(WriteGraph graph, Resource resource) throws DatabaseException {\r
78         Resource property =  graph.getResource(propertyURI);\r
79         Boolean value = graph.getPossibleRelatedValue(resource, property, Bindings.BOOLEAN);\r
80         graph.claimLiteral(resource, property, Boolean.FALSE.equals(value));\r
81     }\r
82 }