]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/serialization/impl/LongSerializer.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / serialization / impl / LongSerializer.java
index 3078d8b66b1395643e3bf697979d5a817cfd665e..68dffacf924829b69d21d340bf781bf1df9eca87 100644 (file)
@@ -1,77 +1,77 @@
-package org.simantics.databoard.serialization.impl;\r
-\r
-import java.io.DataInput;\r
-import java.io.DataOutput;\r
-import java.io.IOException;\r
-\r
-import org.simantics.databoard.binding.LongBinding;\r
-import org.simantics.databoard.binding.error.BindingException;\r
-import org.simantics.databoard.serialization.Serializer.NonRecursiveSerializer;\r
-\r
-public class LongSerializer extends NonRecursiveSerializer {\r
-\r
-       LongBinding binding;\r
-       \r
-       public LongSerializer(LongBinding binding) {this.binding = binding;}\r
-       \r
-       @Override\r
-       public Object deserialize(DataInput in) throws IOException{\r
-               try {\r
-                       long value = in.readLong(); \r
-                       return binding.create(value);\r
-               } catch (BindingException e) {\r
-                       throw new IOException( e ); \r
-               }\r
-       }\r
-\r
-       @Override\r
-       public void deserializeTo(DataInput in, Object obj) throws IOException {\r
-               try {\r
-                       binding.setValue(obj, in.readLong());\r
-               } catch (BindingException e) {\r
-                       throw new IOException( e ); \r
-               }\r
-       }\r
-       \r
-       @Override\r
-       public void skip(DataInput in)\r
-                       throws IOException {\r
-               in.skipBytes(8);                        \r
-       }\r
-       \r
-       @Override\r
-       public void serialize(DataOutput out, Object obj) throws IOException {\r
-               try {\r
-                       long value = binding.getValue_(obj);\r
-                       out.writeLong( value );\r
-               } catch (BindingException e) {\r
-                       throw new IOException( e ); \r
-               }\r
-       }\r
-\r
-       @Override\r
-       public Integer getConstantSize() {\r
-               return 8;\r
-       }\r
-\r
-       @Override\r
-       public int getSize(Object obj) {\r
-               return 8;\r
-       }\r
-       \r
-       @Override\r
-       public int getMinSize() {\r
-               return 8;\r
-       }\r
-       \r
-       public long getLong(DataInput in) throws IOException\r
-       {\r
-               return in.readLong();\r
-       }\r
-       \r
-       public void putLong(DataOutput out, long x) throws IOException\r
-       {\r
-               out.writeLong(x);\r
-       }\r
-       \r
-}      \r
+package org.simantics.databoard.serialization.impl;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.simantics.databoard.binding.LongBinding;
+import org.simantics.databoard.binding.error.BindingException;
+import org.simantics.databoard.serialization.Serializer.NonRecursiveSerializer;
+
+public class LongSerializer extends NonRecursiveSerializer {
+
+       LongBinding binding;
+       
+       public LongSerializer(LongBinding binding) {this.binding = binding;}
+       
+       @Override
+       public Object deserialize(DataInput in) throws IOException{
+               try {
+                       long value = in.readLong(); 
+                       return binding.create(value);
+               } catch (BindingException e) {
+                       throw new IOException( e ); 
+               }
+       }
+
+       @Override
+       public void deserializeTo(DataInput in, Object obj) throws IOException {
+               try {
+                       binding.setValue(obj, in.readLong());
+               } catch (BindingException e) {
+                       throw new IOException( e ); 
+               }
+       }
+       
+       @Override
+       public void skip(DataInput in)
+                       throws IOException {
+               in.skipBytes(8);                        
+       }
+       
+       @Override
+       public void serialize(DataOutput out, Object obj) throws IOException {
+               try {
+                       long value = binding.getValue_(obj);
+                       out.writeLong( value );
+               } catch (BindingException e) {
+                       throw new IOException( e ); 
+               }
+       }
+
+       @Override
+       public Integer getConstantSize() {
+               return 8;
+       }
+
+       @Override
+       public int getSize(Object obj) {
+               return 8;
+       }
+       
+       @Override
+       public int getMinSize() {
+               return 8;
+       }
+       
+       public long getLong(DataInput in) throws IOException
+       {
+               return in.readLong();
+       }
+       
+       public void putLong(DataOutput out, long x) throws IOException
+       {
+               out.writeLong(x);
+       }
+       
+}