org.eclipse.rse.services.shells
Class HostShellOutputStream
java.lang.Object
java.io.OutputStream
org.eclipse.rse.services.shells.HostShellOutputStream
-
All Implemented Interfaces:
-
Closeable,
Flushable
-
public class HostShellOutputStream
- extends
OutputStream
An adapter between the OutputStream and the IHostShell objects.
-
See Also:
-
IHostShell
,
OutputStream
Method Summary
|
void
|
write
(byte[] b)
Writes one byte to the shell. |
void
|
write
(byte[] b,
int off,
int len)
Writes multiple bytes to the shell. |
void
|
write
(int b)
Writes one character to the shell. |
Methods inherited from class java.lang.
Object
|
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
|
HostShellOutputStream
public HostShellOutputStream(
IHostShell hostShell)
- Constructor.
-
Parameters:
-
hostShell
- An instance of the IHostShell class.
The output will be sent to this instance.
write
public void write(byte[] b)
- Writes one byte to the shell.
-
-
Overrides:
-
write
in class
OutputStream
-
-
See Also:
-
OutputStream.write(byte[])
write
public void write(byte[] b,
int off,
int len)
- Writes multiple bytes to the shell.
-
-
Overrides:
-
write
in class
OutputStream
-
-
See Also:
-
OutputStream.write(byte[], int, int)
write
public void write(int b)
throws
IOException
- Writes one character to the shell.
-
-
Specified by:
-
write
in class
OutputStream
-
-
Throws:
-
IOException
-
See Also:
-
OutputStream.write(int)
Copyright (c) IBM Corporation and others 2000, 2008. All Rights Reserved.