]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/util/binary/NullRandomAccessBinary.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / util / binary / NullRandomAccessBinary.java
index a6cf71bd8d107d4ad575bdbc36333702a05e9357..5b2c5ef2711fa41bc4e474dd93cc18749bad4c4c 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2016 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
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.databoard.util.binary;\r
-\r
-import java.io.IOException;\r
-import java.nio.ByteBuffer;\r
-\r
-/**\r
- * A do-nothing stub implementation of RandomAccessBinary.\r
- * \r
- * @author Tuukka Lehtonen\r
- * @since 1.22.1 & 1.24.0\r
- */\r
-public class NullRandomAccessBinary implements RandomAccessBinary {\r
-\r
-    @Override\r
-    public void writeFully(ByteBuffer src) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeFully(ByteBuffer src, int length) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void write(int b) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void write(byte[] b) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void write(byte[] b, int off, int len) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeBoolean(boolean v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeByte(int v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeShort(int v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeChar(int v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeInt(int v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeLong(long v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeFloat(float v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeDouble(double v) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeBytes(String s) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeChars(String s) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void writeUTF(String s) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void flush() throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public long skipBytes(long bytes) throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public void readFully(ByteBuffer buf) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void readFully(ByteBuffer buf, int length) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public long length() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public void readFully(byte[] b) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void readFully(byte[] b, int off, int len) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public int skipBytes(int n) throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public boolean readBoolean() throws IOException {\r
-        return false;\r
-    }\r
-\r
-    @Override\r
-    public byte readByte() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public int readUnsignedByte() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public short readShort() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public int readUnsignedShort() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public char readChar() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public int readInt() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public long readLong() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public float readFloat() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public double readDouble() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public String readLine() throws IOException {\r
-        return null;\r
-    }\r
-\r
-    @Override\r
-    public String readUTF() throws IOException {\r
-        return null;\r
-    }\r
-\r
-    @Override\r
-    public void reset() throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void removeBytes(long bytes, ByteSide side) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void insertBytes(long bytes, ByteSide side) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void setLength(long newLength) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public void close() throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public boolean isOpen() {\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public void position(long newPosition) throws IOException {\r
-    }\r
-\r
-    @Override\r
-    public long position() throws IOException {\r
-        return 0;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2016 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.databoard.util.binary;
+
+import java.io.IOException;
+import java.nio.ByteBuffer;
+
+/**
+ * A do-nothing stub implementation of RandomAccessBinary.
+ * 
+ * @author Tuukka Lehtonen
+ * @since 1.22.1 & 1.24.0
+ */
+public class NullRandomAccessBinary implements RandomAccessBinary {
+
+    @Override
+    public void writeFully(ByteBuffer src) throws IOException {
+    }
+
+    @Override
+    public void writeFully(ByteBuffer src, int length) throws IOException {
+    }
+
+    @Override
+    public void write(int b) throws IOException {
+    }
+
+    @Override
+    public void write(byte[] b) throws IOException {
+    }
+
+    @Override
+    public void write(byte[] b, int off, int len) throws IOException {
+    }
+
+    @Override
+    public void writeBoolean(boolean v) throws IOException {
+    }
+
+    @Override
+    public void writeByte(int v) throws IOException {
+    }
+
+    @Override
+    public void writeShort(int v) throws IOException {
+    }
+
+    @Override
+    public void writeChar(int v) throws IOException {
+    }
+
+    @Override
+    public void writeInt(int v) throws IOException {
+    }
+
+    @Override
+    public void writeLong(long v) throws IOException {
+    }
+
+    @Override
+    public void writeFloat(float v) throws IOException {
+    }
+
+    @Override
+    public void writeDouble(double v) throws IOException {
+    }
+
+    @Override
+    public void writeBytes(String s) throws IOException {
+    }
+
+    @Override
+    public void writeChars(String s) throws IOException {
+    }
+
+    @Override
+    public void writeUTF(String s) throws IOException {
+    }
+
+    @Override
+    public void flush() throws IOException {
+    }
+
+    @Override
+    public long skipBytes(long bytes) throws IOException {
+        return 0;
+    }
+
+    @Override
+    public void readFully(ByteBuffer buf) throws IOException {
+    }
+
+    @Override
+    public void readFully(ByteBuffer buf, int length) throws IOException {
+    }
+
+    @Override
+    public long length() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public void readFully(byte[] b) throws IOException {
+    }
+
+    @Override
+    public void readFully(byte[] b, int off, int len) throws IOException {
+    }
+
+    @Override
+    public int skipBytes(int n) throws IOException {
+        return 0;
+    }
+
+    @Override
+    public boolean readBoolean() throws IOException {
+        return false;
+    }
+
+    @Override
+    public byte readByte() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public int readUnsignedByte() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public short readShort() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public int readUnsignedShort() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public char readChar() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public int readInt() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public long readLong() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public float readFloat() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public double readDouble() throws IOException {
+        return 0;
+    }
+
+    @Override
+    public String readLine() throws IOException {
+        return null;
+    }
+
+    @Override
+    public String readUTF() throws IOException {
+        return null;
+    }
+
+    @Override
+    public void reset() throws IOException {
+    }
+
+    @Override
+    public void removeBytes(long bytes, ByteSide side) throws IOException {
+    }
+
+    @Override
+    public void insertBytes(long bytes, ByteSide side) throws IOException {
+    }
+
+    @Override
+    public void setLength(long newLength) throws IOException {
+    }
+
+    @Override
+    public void close() throws IOException {
+    }
+
+    @Override
+    public boolean isOpen() {
+        return true;
+    }
+
+    @Override
+    public void position(long newPosition) throws IOException {
+    }
+
+    @Override
+    public long position() throws IOException {
+        return 0;
+    }
+
+}