]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableFloatBinding.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / binding / mutable / MutableFloatBinding.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 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.databoard.binding.mutable;
13
14 import org.simantics.databoard.binding.FloatBinding;
15 import org.simantics.databoard.binding.error.BindingException;
16 import org.simantics.databoard.primitives.MutableFloat;
17 import org.simantics.databoard.type.FloatType;
18
19 /**
20  * Binds FloatType to {@link MutableFloat}
21  *
22  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
23  */
24 public class MutableFloatBinding extends FloatBinding {
25
26         public MutableFloatBinding(FloatType type) {
27                 super(type);
28         }
29
30         @Override
31         public Object create(float value) {
32                 MutableFloat result = new MutableFloat();
33                 result.value = value;
34                 return result;
35         }
36
37         @Override
38         public Object create(Float value) {
39                 MutableFloat result = new MutableFloat();
40                 result.value = value;
41                 return result;
42         }
43
44         @Override
45         public Object create(Number value) {
46                 MutableFloat result = new MutableFloat();
47                 result.value = value.floatValue();
48                 return result;
49         }
50
51         @Override
52         public Object create(String value) {
53                 MutableFloat result = new MutableFloat();
54                 result.value = Float.valueOf(value);
55                 return result;
56         }
57
58         @Override
59         public float getValue_(Object o) throws BindingException {
60                 MutableFloat result = (MutableFloat) o;
61                 return result.value;
62         }
63
64         @Override
65         public Float getValue(Object o) throws BindingException {
66                 MutableFloat result = (MutableFloat) o;
67                 return result.value;
68         }
69
70         @Override
71         public boolean isInstance(Object obj) {
72                 return obj instanceof MutableFloat;
73         }
74
75         @Override
76         public void setValue(Object obj, float value) throws BindingException {
77                 MutableFloat result = (MutableFloat) obj;
78                 result.value = value;
79         }
80
81         @Override
82         public void setValue(Object obj, Number value) throws BindingException {
83                 MutableFloat result = (MutableFloat) obj;
84                 result.value = value.floatValue();
85         }
86                         
87 }
88