]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics/src/org/simantics/SimanticsBindings.java
Initial support for concurrency in databoard, bindings and serializers
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / SimanticsBindings.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2018 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics;
13
14 import org.simantics.databoard.binding.Binding;
15 import org.simantics.databoard.binding.error.BindingConstructionException;
16 import org.simantics.databoard.binding.reflection.BindingProvider;
17 import org.simantics.databoard.binding.reflection.BindingRequest;
18 import org.simantics.databoard.binding.reflection.ClassBindingFactory;
19 import org.simantics.db.Resource;
20 import org.simantics.db.layer0.bindings.ResourceBinding;
21
22 /**
23  * This class creates bindings for Resource-interface, and Variable-interface.<<
24  *   
25  * @author toni.kalajainen
26  */
27 public class SimanticsBindings implements BindingProvider {
28
29         ResourceBinding resourceBinding;
30
31         public SimanticsBindings() {
32                 this.resourceBinding = new ResourceBinding();
33         }
34
35         public Binding provideBinding(ClassBindingFactory master, BindingRequest request) throws BindingConstructionException {
36                 if (Resource.class.isAssignableFrom( request.getClazz() )) {
37                         return resourceBinding;
38                 }
39                 return null;
40         }
41
42 }