blob: 9791a486fc1a725b04150a8724a0b2024ddd9d94 [file] [log] [blame]
Richard S. Hall5c23fb92006-09-28 19:55:37 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Richard S. Hall54d1e2e2006-04-05 14:19:38 +00009 *
Richard S. Hall5c23fb92006-09-28 19:55:37 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000011 *
Richard S. Hall5c23fb92006-09-28 19:55:37 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000018 */
19package org.apache.felix.shell.gui.plugin;
20
21import java.io.OutputStream;
22
23class OutputAreaStream extends OutputStream
24{
25 private ScrollableOutputArea m_soa;
26
27 public OutputAreaStream(ScrollableOutputArea soa)
28 {
29 m_soa = soa;
30 }
31
32 public void write(byte[] b)
33 {
34 String tmp = new String(b);
35 m_soa.addText(tmp);
36 }
37
38 public void write(byte[] b, int off, int len)
39 {
40 String tmp = new String(b, off, len);
41 m_soa.addText(tmp);
42 }
43
44 public void write(int b)
45 {
46 byte[] ba = { (byte) b };
47 m_soa.addText(new String(ba));
48 }
49}