Win32Process.java: Created a dummy class to allow build process to run to completion.
[gcc.git] / libjava / java / lang / Win32Process.java
1 // Win32Process.java - Subclass of Process for Win32 systems.
2
3 /* Copyright (C) 2002 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
13 import java.io.InputStream;
14 import java.io.OutputStream;
15 import java.io.IOException;
16
17 /**
18 * @author Adam Megacz
19 * @date Feb 24, 2002
20 */
21
22 // This is entirely internal to our implementation.
23
24 // This file is copied to `ConcreteProcess.java' before compilation.
25 // Hence the class name apparently does not match the file name.
26 final class ConcreteProcess extends Process
27 {
28 public void destroy ()
29 {
30 throw new Error("not implemented");
31 }
32
33 public int exitValue ()
34 {
35 throw new Error("not implemented");
36 }
37
38 public InputStream getErrorStream ()
39 {
40 throw new Error("not implemented");
41 }
42
43 public InputStream getInputStream ()
44 {
45 throw new Error("not implemented");
46 }
47
48 public OutputStream getOutputStream ()
49 {
50 throw new Error("not implemented");
51 }
52
53 public int waitFor () throws InterruptedException
54 {
55 throw new Error("not implemented");
56 }
57
58 public ConcreteProcess (String[] progarray, String[] envp) throws IOException
59 {
60 throw new Error("not implemented");
61 }
62
63 }