summaryrefslogtreecommitdiffstats
path: root/qadevOOo/runner/helper/StreamSimulator.java
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:41:12 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 05:59:24 -0600
commitfaabee67550fb8eaebe5f58e224508de81d2c641 (patch)
tree102b91054825b5ff7af4f72905322d39de84f97d /qadevOOo/runner/helper/StreamSimulator.java
parentRemove visual noise from toolkit (diff)
downloadcore-faabee67550fb8eaebe5f58e224508de81d2c641.tar.gz
core-faabee67550fb8eaebe5f58e224508de81d2c641.zip
Remove visual noise from qadevOOo
Change-Id: I3d65145422039d629d2375c9fef030cd6ee41124 Reviewed-on: https://gerrit.libreoffice.org/8291 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'qadevOOo/runner/helper/StreamSimulator.java')
-rw-r--r--qadevOOo/runner/helper/StreamSimulator.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/qadevOOo/runner/helper/StreamSimulator.java b/qadevOOo/runner/helper/StreamSimulator.java
index ad4dfc903a26..e2884044df07 100644
--- a/qadevOOo/runner/helper/StreamSimulator.java
+++ b/qadevOOo/runner/helper/StreamSimulator.java
@@ -35,7 +35,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
com.sun.star.io.XOutputStream ,
com.sun.star.io.XSeekable
{
- //_________________________________
+
/**
* @member m_sFileName name of the corrsponding file on disk
* @member m_xInStream the internal input stream for reading
@@ -56,7 +56,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
public boolean m_bInWasUsed ;
public boolean m_bOutWasUsed ;
- //_________________________________
+
/**
* construct a new instance of this class
* It set the name of the correspojnding file on disk, which
@@ -124,7 +124,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
////m_aProtocol.log("finalize was called. Please check if it was right or not.\n");
} */
- //_________________________________
+
/**
* following methods simulates the XInputStream.
* The notice all actions inside the internal protocol
@@ -167,7 +167,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
return nRead;
}
- //_________________________________
+
public int readSomeBytes( /*OUT*/ byte[][] lData ,
/*IN*/ int nMaxBytesToRead ) throws com.sun.star.io.NotConnectedException ,
@@ -205,7 +205,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
return nRead;
}
- //_________________________________
+
public void skipBytes( /*IN*/ int nBytesToSkip ) throws com.sun.star.io.NotConnectedException ,
com.sun.star.io.BufferSizeExceededException ,
@@ -236,7 +236,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
public int available() throws com.sun.star.io.NotConnectedException,
com.sun.star.io.IOException
@@ -266,7 +266,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
return nAvailable;
}
- //_________________________________
+
public void closeInput() throws com.sun.star.io.NotConnectedException,
com.sun.star.io.IOException
@@ -294,7 +294,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
/**
* following methods simulates the XOutputStream.
* The notice all actions inside the internal protocol
@@ -330,7 +330,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
public void flush() throws com.sun.star.io.NotConnectedException ,
com.sun.star.io.BufferSizeExceededException ,
@@ -360,7 +360,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
public void closeOutput() throws com.sun.star.io.NotConnectedException ,
com.sun.star.io.BufferSizeExceededException,
@@ -391,7 +391,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
/**
* following methods simulates the XSeekable.
* The notice all actions inside the internal protocol
@@ -431,7 +431,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
//m_aProtocol.log("\tOK\n}\n");
}
- //_________________________________
+
public long getPosition() throws com.sun.star.io.IOException
{
@@ -465,7 +465,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
return nPos;
}
- //_________________________________
+
public long getLength() throws com.sun.star.io.IOException
{