]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/binding/impl/ByteBindingDefault.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / binding / impl / ByteBindingDefault.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.impl;
13
14 import org.simantics.databoard.binding.ByteBinding;
15 import org.simantics.databoard.binding.error.BindingException;
16 import org.simantics.databoard.binding.error.UnsupportedOperationException;
17 import org.simantics.databoard.type.ByteType;
18
19 /**
20  * Binds ByteType to java.lang.Byte-class
21  *
22  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
23  */
24 public class ByteBindingDefault extends ByteBinding {
25         
26         public ByteBindingDefault(ByteType type) {
27                 super(type);
28         }
29         
30         public Object create(byte value) {
31                 return Byte.valueOf(value);
32         }
33         
34         public Object create(Byte value) {
35                 return value;
36         }
37         
38         @Override
39         public Object create(Number value) 
40         {
41                 if (value.getClass()==Byte.class) return value;
42                 return Byte.valueOf( value.byteValue() );
43         }       
44         
45         @Override
46         public Object create(String value) throws BindingException {
47                 try {
48                         return Byte.parseByte(value);
49                 } catch (java.lang.NumberFormatException e) {
50                         throw new BindingException( e );
51                 }
52         }
53                 
54         public Byte getValue(Object obj)
55         throws BindingException
56         {
57                 if (obj.getClass()!=Byte.class) throw new BindingException("Unexpected class "+obj.getClass().getSimpleName()+", Byte expected");
58                 return ((Byte)obj);
59         }
60         
61         public byte getValue_(Object obj)
62         throws BindingException
63         {
64                 if (obj.getClass()!=Byte.class) throw new BindingException("Unexpected class "+obj.getClass().getSimpleName()+", Byte expected");
65                 return ((Byte)obj);
66         }
67
68         @Override
69         public void setValue(Object obj, Number value) throws BindingException {
70                 throw new UnsupportedOperationException("Cannot change the value of immutable java.lang.Byte");
71         }
72                 
73         public void setValue(Object obj, byte value) throws BindingException {
74                 throw new UnsupportedOperationException("Cannot change the value of immutable java.lang.Byte");
75         }
76         
77         @Override
78         public boolean isInstance(Object obj) {
79                 return obj instanceof Byte;
80         }
81         
82         @Override
83         public boolean isImmutable() {
84                 return true;
85         }
86
87     @Override
88     public int compare(Object o1, Object o2)
89     {
90         Byte d1 = (Byte) o1;
91         Byte d2 = (Byte) o2;
92         int d = d1-d2;
93         return d == 0 ? 0 : (d<0?-1:1);
94     }
95         
96
97 }
98