KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > core > model > IStreamsProxy2


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.core.model;
12
13 import java.io.IOException JavaDoc;
14
15 /**
16  * Extension to a streams proxy that allows closing of the output stream
17  * connected to the standard input stream of a proxy's process.
18  * <p>
19  * Clients should implement this interface, in addition to
20  * <code>IStreamsProxy</code>, if interested closing the standard
21  * input stream.
22  * </p>
23  * @since 3.1
24  */

25 public interface IStreamsProxy2 extends IStreamsProxy {
26
27     /**
28      * Closes the output stream connected to the standard input stream
29      * of this proxy's process.
30      *
31      * @throws IOException if unable to close the stream
32      */

33     public void closeInputStream() throws IOException JavaDoc;
34 }
35
Popular Tags