OSDN Git Service

* All files: Updated copyright information.
[pf3gnuchains/gcc-fork.git] / libjava / java / lang / Process.java
1 // Process.java - Represent spawned system process.
2
3 /* Copyright (C) 1998, 1999  Free Software Foundation
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package java.lang;
12 import java.io.*;
13
14 /**
15  * @author Tom Tromey <tromey@cygnus.com>
16  * @date October 23, 1998.  
17  */
18
19 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
20  */
21
22 public abstract class Process
23 {
24   abstract public void destroy ();
25   abstract public int exitValue ();
26   abstract public InputStream getErrorStream ();
27   abstract public InputStream getInputStream ();
28   abstract public OutputStream getOutputStream ();
29   abstract public int waitFor () throws InterruptedException;
30 }