]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/gfx/clipboard/streams/RemoveBitmapHeaderOutputStream.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / gfx / clipboard / streams / RemoveBitmapHeaderOutputStream.java
index 7102557be25dc1e32a53008b28f07e684843b6dc..27d73c84544c5c263293ce0ccdfa3cf88a862d5a 100644 (file)
@@ -1,65 +1,65 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.utils.ui.gfx.clipboard.streams;\r
-\r
-import java.io.IOException;\r
-import java.io.OutputStream;\r
-\r
-import org.simantics.utils.ui.gfx.clipboard.headers.BitmapFileHeader;\r
-\r
-\r
-/**\r
- * Removes WIN32 API BITMAPFILEHEADER from the beginning of stream\r
- * \r
- * @author Marko Luukkainen\r
- *\r
- */\r
-public class RemoveBitmapHeaderOutputStream extends OutputStream{\r
-    private OutputStream oStream;\r
-    private int byteCount = 0;\r
-    \r
-    public RemoveBitmapHeaderOutputStream(OutputStream oStream) {\r
-        this.oStream = oStream;\r
-    }\r
-    \r
-    @Override\r
-    public void write(byte[] b) throws IOException {\r
-        if (byteCount >= BitmapFileHeader.sizeof) {\r
-            super.write(b);\r
-        } else if (b.length >= BitmapFileHeader.sizeof - byteCount){\r
-            byte[] newArray = new byte[b.length - BitmapFileHeader.sizeof + byteCount];\r
-            System.arraycopy(b, BitmapFileHeader.sizeof - byteCount, newArray, 0, newArray.length);\r
-            byteCount = BitmapFileHeader.sizeof;\r
-            super.write(newArray);    \r
-        } else {\r
-            byteCount+= b.length;\r
-        }\r
-        super.write(b);\r
-    }\r
-    \r
-    @Override\r
-    public void write(byte[] b, int off, int len) throws IOException {\r
-        if (byteCount >= BitmapFileHeader.sizeof)\r
-            super.write(b, off, len);\r
-        else\r
-            throw new IOException("Operation not supported, cannot remove header"); \r
-    }\r
-    \r
-    @Override\r
-    public void write(int b) throws IOException {\r
-        if (byteCount >= BitmapFileHeader.sizeof) {\r
-            oStream.write(b);\r
-        } else {\r
-            byteCount++;\r
-        }\r
-    }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.utils.ui.gfx.clipboard.streams;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
+import org.simantics.utils.ui.gfx.clipboard.headers.BitmapFileHeader;
+
+
+/**
+ * Removes WIN32 API BITMAPFILEHEADER from the beginning of stream
+ * 
+ * @author Marko Luukkainen
+ *
+ */
+public class RemoveBitmapHeaderOutputStream extends OutputStream{
+    private OutputStream oStream;
+    private int byteCount = 0;
+    
+    public RemoveBitmapHeaderOutputStream(OutputStream oStream) {
+        this.oStream = oStream;
+    }
+    
+    @Override
+    public void write(byte[] b) throws IOException {
+        if (byteCount >= BitmapFileHeader.sizeof) {
+            super.write(b);
+        } else if (b.length >= BitmapFileHeader.sizeof - byteCount){
+            byte[] newArray = new byte[b.length - BitmapFileHeader.sizeof + byteCount];
+            System.arraycopy(b, BitmapFileHeader.sizeof - byteCount, newArray, 0, newArray.length);
+            byteCount = BitmapFileHeader.sizeof;
+            super.write(newArray);    
+        } else {
+            byteCount+= b.length;
+        }
+        super.write(b);
+    }
+    
+    @Override
+    public void write(byte[] b, int off, int len) throws IOException {
+        if (byteCount >= BitmapFileHeader.sizeof)
+            super.write(b, off, len);
+        else
+            throw new IOException("Operation not supported, cannot remove header"); 
+    }
+    
+    @Override
+    public void write(int b) throws IOException {
+        if (byteCount >= BitmapFileHeader.sizeof) {
+            oStream.write(b);
+        } else {
+            byteCount++;
+        }
+    }
+}