summaryrefslogtreecommitdiffstats
path: root/scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java')
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java b/scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java
index 17c0869cb5e0..e3c561cff48d 100644
--- a/scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java
+++ b/scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java
@@ -25,6 +25,7 @@ public class XOutputStreamWrapper extends OutputStream {
public XOutputStreamWrapper(XOutputStream xOs ) {
this.m_xOutputStream = xOs;
}
+ @Override
public void write(int b)
throws java.io.IOException
{
@@ -43,6 +44,7 @@ public class XOutputStreamWrapper extends OutputStream {
throw new java.io.IOException(ioe.getMessage());
}
}
+ @Override
public void write(byte[] b)
throws java.io.IOException
{
@@ -60,6 +62,7 @@ public class XOutputStreamWrapper extends OutputStream {
throw new java.io.IOException(ioe.getMessage());
}
}
+ @Override
public void write( byte[] b, int off, int len )
throws java.io.IOException
{
@@ -82,6 +85,7 @@ public class XOutputStreamWrapper extends OutputStream {
}
}
+ @Override
public void flush()
throws java.io.IOException
{
@@ -98,6 +102,7 @@ public class XOutputStreamWrapper extends OutputStream {
throw new java.io.IOException(ioe.getMessage());
}
}
+ @Override
public void close()
throws java.io.IOException
{