Update ooo320-m1
[ooovba.git] / javaunohelper / com / sun / star / lib / uno / adapter / OutputStreamToXOutputStreamAdapter.java
blob6a0a62be08b66357266076880e27cf8d5b2c4aa4
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: OutputStreamToXOutputStreamAdapter.java,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package com.sun.star.lib.uno.adapter;
33 import java.io.IOException;
34 import com.sun.star.io.XOutputStream;
35 import java.io.OutputStream;
37 /** The <code>OutputStreamToXOutputStreamAdapter</code> wraps
38 a a UNO <code>XOutputStream</code> into a Java <code>OutputStream</code>
39 object in a Java. This allows users to access an <code>OutputStream</code>
40 as if it were an <code>XOutputStream</code>.
42 public class OutputStreamToXOutputStreamAdapter implements XOutputStream {
44 /**
45 * Internal handle to the OutputStream
47 OutputStream iOut;
49 /**
50 * Constructor.
52 * @param out The <code>XOutputStream</code> to be
53 * accessed as an <code>OutputStream</code>.
55 public OutputStreamToXOutputStreamAdapter(OutputStream out) {
56 iOut = out;
59 public void closeOutput() throws
60 com.sun.star.io.IOException
62 try {
63 iOut.close();
64 } catch (IOException e) {
65 throw new com.sun.star.io.IOException(e.toString());
69 public void flush() throws
70 com.sun.star.io.IOException
72 try {
73 iOut.flush();
74 } catch (IOException e) {
75 throw new com.sun.star.io.IOException(e.toString());
79 public void writeBytes(byte[] b) throws
80 com.sun.star.io.IOException
83 try {
84 iOut.write(b);
85 } catch (IOException e) {
86 throw new com.sun.star.io.IOException(e.toString());