1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 10:05:24 +02:00

Bug 161777 - move HostShellAdapter, HostShellOutputStream to org.eclipse.rse.services.shells

This commit is contained in:
Martin Oberhuber 2006-11-16 10:05:11 +00:00
parent 087fc65285
commit b6eff0b6ac
3 changed files with 5 additions and 7 deletions

View file

@ -44,6 +44,7 @@ import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.core.subsystems.ISubSystem; import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.services.IService; import org.eclipse.rse.services.IService;
import org.eclipse.rse.services.files.IFileService; import org.eclipse.rse.services.files.IFileService;
import org.eclipse.rse.services.shells.HostShellAdapter;
import org.eclipse.rse.services.shells.IHostShell; import org.eclipse.rse.services.shells.IHostShell;
import org.eclipse.rse.services.shells.IShellService; import org.eclipse.rse.services.shells.IShellService;
import org.eclipse.rse.subsystems.files.core.servicesubsystem.IFileServiceSubSystem; import org.eclipse.rse.subsystems.files.core.servicesubsystem.IFileServiceSubSystem;

View file

@ -8,9 +8,10 @@
* Contributors: * Contributors:
* Ewa Matejska (PalmSource) - initial version * Ewa Matejska (PalmSource) - initial version
* Martin Oberhuber (Wind River) - adapt to IHostOutput API (bug 161773, 158312) * Martin Oberhuber (Wind River) - adapt to IHostOutput API (bug 161773, 158312)
* Martin Oberhuber (Wind River) - moved from org.eclipse.rse.remotecdt (bug 161777)
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.remotecdt; package org.eclipse.rse.services.shells;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
@ -18,10 +19,6 @@ import java.io.OutputStream;
import java.io.PipedInputStream; import java.io.PipedInputStream;
import java.io.PipedOutputStream; import java.io.PipedOutputStream;
import org.eclipse.rse.services.shells.IHostOutput;
import org.eclipse.rse.services.shells.IHostShell;
import org.eclipse.rse.services.shells.IHostShellChangeEvent;
import org.eclipse.rse.services.shells.IHostShellOutputListener;
/** /**
* This class represents a host shell process. It does not * This class represents a host shell process. It does not

View file

@ -7,14 +7,14 @@
* *
* Contributors: * Contributors:
* Ewa Matejska (PalmSource) * Ewa Matejska (PalmSource)
* Martin Oberhuber (Wind River) - moved from org.eclipse.rse.remotecdt (bug 161777)
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.remotecdt; package org.eclipse.rse.services.shells;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
import org.eclipse.rse.services.shells.IHostShell;
/** /**
* An adapter between the OutputStream and the IHostShell objects. * An adapter between the OutputStream and the IHostShell objects.