Skip to content
Snippets Groups Projects
Commit 650f291a authored by tpylak's avatar tpylak
Browse files

minor: javadoc

SVN: 15792
parent 20a90017
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,8 @@ import java.io.IOException; ...@@ -22,6 +22,8 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;
import ch.systemsx.cisd.common.geometry.Point;
/** /**
* A helper class which allows to separate multiple blocks written to one stream in a format: * A helper class which allows to separate multiple blocks written to one stream in a format:
* (<block-size><block-of-bytes>)* where block-size is the long number. Useful to parse the content * (<block-size><block-of-bytes>)* where block-size is the long number. Useful to parse the content
...@@ -29,6 +31,8 @@ import java.io.OutputStream; ...@@ -29,6 +31,8 @@ import java.io.OutputStream;
* *
* @author Tomasz Pylak * @author Tomasz Pylak
*/ */
// NOTE: This class is used in some APIs and should not depend on classes other than those in java.*
// package
public class ConcatFileOutputStreamWriter public class ConcatFileOutputStreamWriter
{ {
private static final int DEFAULT_BUFFER_SIZE = 1024 * 8; private static final int DEFAULT_BUFFER_SIZE = 1024 * 8;
...@@ -59,6 +63,8 @@ public class ConcatFileOutputStreamWriter ...@@ -59,6 +63,8 @@ public class ConcatFileOutputStreamWriter
*/ */
public long writeNextBlock(OutputStream output) throws IOException public long writeNextBlock(OutputStream output) throws IOException
{ {
Point p = new Point(1, 1);
System.out.println(p);
long blockSize = gotoNextBlock(); long blockSize = gotoNextBlock();
if (blockSize == -1) if (blockSize == -1)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment