Return-Path: Delivered-To: apmail-incubator-felix-commits-archive@www.apache.org Received: (qmail 43234 invoked from network); 18 Oct 2006 22:06:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Oct 2006 22:06:11 -0000 Received: (qmail 46325 invoked by uid 500); 18 Oct 2006 22:06:10 -0000 Delivered-To: apmail-incubator-felix-commits-archive@incubator.apache.org Received: (qmail 46272 invoked by uid 500); 18 Oct 2006 22:06:10 -0000 Mailing-List: contact felix-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: felix-dev@incubator.apache.org Delivered-To: mailing list felix-commits@incubator.apache.org Received: (qmail 46238 invoked by uid 99); 18 Oct 2006 22:06:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 15:06:10 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 15:06:02 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 6A1061A981F; Wed, 18 Oct 2006 15:05:42 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r465396 [2/12] - in /incubator/felix/trunk/org.osgi.foundation: ./ src/ src/main/ src/main/java/ src/main/java/java/ src/main/java/java/io/ src/main/java/java/lang/ src/main/java/java/lang/ref/ src/main/java/java/lang/reflect/ src/main/java... Date: Wed, 18 Oct 2006 22:05:29 -0000 To: felix-commits@incubator.apache.org From: rickhall@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061018220542.6A1061A981F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileDescriptor.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileDescriptor.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileDescriptor.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileDescriptor.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,29 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileDescriptor.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public final class FileDescriptor { + public FileDescriptor() { } + public void sync() throws java.io.SyncFailedException { } + public boolean valid() { return false; } + public final static java.io.FileDescriptor in; static { in = null; } + public final static java.io.FileDescriptor out; static { out = null; } + public final static java.io.FileDescriptor err; static { err = null; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileDescriptor.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileFilter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileFilter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileFilter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileFilter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,24 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileFilter.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface FileFilter { + public abstract boolean accept(java.io.File var0); +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileFilter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileInputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileInputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileInputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileInputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,34 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileInputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FileInputStream extends java.io.InputStream { + public FileInputStream(java.io.File var0) throws java.io.FileNotFoundException { } + public FileInputStream(java.io.FileDescriptor var0) { } + public FileInputStream(java.lang.String var0) throws java.io.FileNotFoundException { } + public int available() throws java.io.IOException { return 0; } + public void close() throws java.io.IOException { } + protected void finalize() throws java.io.IOException { } + public final java.io.FileDescriptor getFD() throws java.io.IOException { return null; } + public int read() throws java.io.IOException { return 0; } + public int read(byte[] var0) throws java.io.IOException { return 0; } + public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public long skip(long var0) throws java.io.IOException { return 0l; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileInputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileNotFoundException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileNotFoundException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileNotFoundException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileNotFoundException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,25 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileNotFoundException.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FileNotFoundException extends java.io.IOException { + public FileNotFoundException() { } + public FileNotFoundException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileNotFoundException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileOutputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileOutputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileOutputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileOutputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,33 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileOutputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FileOutputStream extends java.io.OutputStream { + public FileOutputStream(java.io.File var0) throws java.io.FileNotFoundException { } + public FileOutputStream(java.io.FileDescriptor var0) { } + public FileOutputStream(java.lang.String var0) throws java.io.FileNotFoundException { } + public FileOutputStream(java.lang.String var0, boolean var1) throws java.io.FileNotFoundException { } + public void close() throws java.io.IOException { } + protected void finalize() throws java.io.IOException { } + public final java.io.FileDescriptor getFD() throws java.io.IOException { return null; } + public void write(byte[] var0) throws java.io.IOException { } + public void write(byte[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileOutputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilePermission.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilePermission.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilePermission.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilePermission.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,29 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilePermission.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public final class FilePermission extends java.security.Permission implements java.io.Serializable { + public FilePermission(java.lang.String var0, java.lang.String var1) { super((java.lang.String) null); } + public java.lang.String getActions() { return null; } + public boolean equals(java.lang.Object var0) { return false; } + public boolean implies(java.security.Permission var0) { return false; } + public java.security.PermissionCollection newPermissionCollection() { return null; } + public int hashCode() { return 0; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilePermission.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileReader.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileReader.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileReader.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileReader.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,26 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileReader.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FileReader extends java.io.InputStreamReader { + public FileReader(java.io.File var0) throws java.io.FileNotFoundException { super((java.io.InputStream) null); } + public FileReader(java.io.FileDescriptor var0) { super((java.io.InputStream) null); } + public FileReader(java.lang.String var0) throws java.io.FileNotFoundException { super((java.io.InputStream) null); } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileReader.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileWriter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileWriter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileWriter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileWriter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,27 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FileWriter.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FileWriter extends java.io.OutputStreamWriter { + public FileWriter(java.io.File var0) throws java.io.IOException { super((java.io.OutputStream) null); } + public FileWriter(java.io.FileDescriptor var0) { super((java.io.OutputStream) null); } + public FileWriter(java.lang.String var0) throws java.io.IOException { super((java.io.OutputStream) null); } + public FileWriter(java.lang.String var0, boolean var1) throws java.io.IOException { super((java.io.OutputStream) null); } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FileWriter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilenameFilter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilenameFilter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilenameFilter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilenameFilter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,24 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilenameFilter.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface FilenameFilter { + public abstract boolean accept(java.io.File var0, java.lang.String var1); +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilenameFilter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterInputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterInputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterInputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterInputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,34 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilterInputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FilterInputStream extends java.io.InputStream { + protected FilterInputStream(java.io.InputStream var0) { } + public int available() throws java.io.IOException { return 0; } + public void close() throws java.io.IOException { } + public void mark(int var0) { } + public boolean markSupported() { return false; } + public int read() throws java.io.IOException { return 0; } + public int read(byte[] var0) throws java.io.IOException { return 0; } + public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public void reset() throws java.io.IOException { } + public long skip(long var0) throws java.io.IOException { return 0l; } + protected java.io.InputStream in; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterInputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterOutputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterOutputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterOutputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterOutputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilterOutputStream.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class FilterOutputStream extends java.io.OutputStream { + public FilterOutputStream(java.io.OutputStream var0) { } + public void close() throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public void write(byte[] var0) throws java.io.IOException { } + public void write(byte[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } + protected java.io.OutputStream out; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterOutputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterReader.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterReader.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterReader.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterReader.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,33 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilterReader.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract class FilterReader extends java.io.Reader { + protected FilterReader(java.io.Reader var0) { } + public void close() throws java.io.IOException { } + public void mark(int var0) throws java.io.IOException { } + public boolean markSupported() { return false; } + public int read() throws java.io.IOException { return 0; } + public int read(char[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public boolean ready() throws java.io.IOException { return false; } + public void reset() throws java.io.IOException { } + public long skip(long var0) throws java.io.IOException { return 0l; } + protected java.io.Reader in; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterReader.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterWriter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterWriter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterWriter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterWriter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/FilterWriter.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract class FilterWriter extends java.io.Writer { + protected FilterWriter(java.io.Writer var0) { } + public void close() throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public void write(char[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } + public void write(java.lang.String var0, int var1, int var2) throws java.io.IOException { } + protected java.io.Writer out; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/FilterWriter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/IOException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/IOException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/IOException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/IOException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,25 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/IOException.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class IOException extends java.lang.Exception { + public IOException() { } + public IOException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/IOException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,33 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/InputStream.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract class InputStream { + public InputStream() { } + public int available() throws java.io.IOException { return 0; } + public void close() throws java.io.IOException { } + public void mark(int var0) { } + public boolean markSupported() { return false; } + public abstract int read() throws java.io.IOException; + public int read(byte[] var0) throws java.io.IOException { return 0; } + public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public void reset() throws java.io.IOException { } + public long skip(long var0) throws java.io.IOException { return 0l; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStreamReader.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStreamReader.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStreamReader.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStreamReader.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/InputStreamReader.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class InputStreamReader extends java.io.Reader { + public InputStreamReader(java.io.InputStream var0) { } + public InputStreamReader(java.io.InputStream var0, java.lang.String var1) throws java.io.UnsupportedEncodingException { } + public void close() throws java.io.IOException { } + public java.lang.String getEncoding() { return null; } + public int read() throws java.io.IOException { return 0; } + public int read(char[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public boolean ready() throws java.io.IOException { return false; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InputStreamReader.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InterruptedIOException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InterruptedIOException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InterruptedIOException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InterruptedIOException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,26 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/InterruptedIOException.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class InterruptedIOException extends java.io.IOException { + public InterruptedIOException() { } + public InterruptedIOException(java.lang.String var0) { } + public int bytesTransferred; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InterruptedIOException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidClassException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidClassException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidClassException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidClassException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,27 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/InvalidClassException.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class InvalidClassException extends java.io.ObjectStreamException { + public InvalidClassException(java.lang.String var0) { } + public InvalidClassException(java.lang.String var0, java.lang.String var1) { } + public java.lang.String getMessage() { return null; } + public java.lang.String classname; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidClassException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidObjectException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidObjectException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidObjectException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidObjectException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,24 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/InvalidObjectException.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class InvalidObjectException extends java.io.ObjectStreamException { + public InvalidObjectException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/InvalidObjectException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/LineNumberReader.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/LineNumberReader.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/LineNumberReader.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/LineNumberReader.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,33 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/LineNumberReader.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class LineNumberReader extends java.io.BufferedReader { + public LineNumberReader(java.io.Reader var0) { super((java.io.Reader) null, 0); } + public LineNumberReader(java.io.Reader var0, int var1) { super((java.io.Reader) null, 0); } + public int getLineNumber() { return 0; } + public void mark(int var0) throws java.io.IOException { } + public int read() throws java.io.IOException { return 0; } + public int read(char[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public java.lang.String readLine() throws java.io.IOException { return null; } + public void reset() throws java.io.IOException { } + public void setLineNumber(int var0) { } + public long skip(long var0) throws java.io.IOException { return 0l; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/LineNumberReader.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotActiveException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotActiveException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotActiveException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotActiveException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,25 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/NotActiveException.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class NotActiveException extends java.io.ObjectStreamException { + public NotActiveException() { } + public NotActiveException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotActiveException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotSerializableException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotSerializableException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotSerializableException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotSerializableException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,25 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/NotSerializableException.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class NotSerializableException extends java.io.ObjectStreamException { + public NotSerializableException() { } + public NotSerializableException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/NotSerializableException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInput.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInput.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInput.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInput.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectInput.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface ObjectInput extends java.io.DataInput { + public abstract int available() throws java.io.IOException; + public abstract void close() throws java.io.IOException; + public abstract int read() throws java.io.IOException; + public abstract int read(byte[] var0) throws java.io.IOException; + public abstract int read(byte[] var0, int var1, int var2) throws java.io.IOException; + public abstract java.lang.Object readObject() throws java.lang.ClassNotFoundException, java.io.IOException; + public abstract long skip(long var0) throws java.io.IOException; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInput.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,69 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectInputStream.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class ObjectInputStream extends java.io.InputStream implements java.io.ObjectInput, java.io.ObjectStreamConstants { + protected ObjectInputStream() throws java.io.IOException, java.lang.SecurityException { } + public ObjectInputStream(java.io.InputStream var0) throws java.io.StreamCorruptedException, java.io.IOException { } + public int available() throws java.io.IOException { return 0; } + public void close() throws java.io.IOException { } + public void defaultReadObject() throws java.io.IOException, java.lang.ClassNotFoundException, java.io.NotActiveException { } + protected boolean enableResolveObject(boolean var0) throws java.lang.SecurityException { return false; } + public int read() throws java.io.IOException { return 0; } + public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public boolean readBoolean() throws java.io.IOException { return false; } + public byte readByte() throws java.io.IOException { return 0; } + public char readChar() throws java.io.IOException { return 0; } + public double readDouble() throws java.io.IOException { return 0.0d; } + public java.io.ObjectInputStream.GetField readFields() throws java.io.IOException, java.lang.ClassNotFoundException, java.io.NotActiveException { return null; } + public float readFloat() throws java.io.IOException { return 0.0f; } + public void readFully(byte[] var0) throws java.io.IOException { } + public void readFully(byte[] var0, int var1, int var2) throws java.io.IOException { } + public int readInt() throws java.io.IOException { return 0; } + public java.lang.String readLine() throws java.io.IOException { return null; } + public long readLong() throws java.io.IOException { return 0l; } + protected java.io.ObjectStreamClass readClassDescriptor() throws java.io.IOException, java.lang.ClassNotFoundException { return null; } + protected java.lang.Class resolveProxyClass(java.lang.String[] var0) throws java.io.IOException, java.lang.ClassNotFoundException { return null; } + public final java.lang.Object readObject() throws java.io.OptionalDataException, java.lang.ClassNotFoundException, java.io.IOException { return null; } + protected java.lang.Object readObjectOverride() throws java.io.OptionalDataException, java.lang.ClassNotFoundException, java.io.IOException { return null; } + public short readShort() throws java.io.IOException { return 0; } + protected void readStreamHeader() throws java.io.IOException, java.io.StreamCorruptedException { } + public int readUnsignedByte() throws java.io.IOException { return 0; } + public int readUnsignedShort() throws java.io.IOException { return 0; } + public java.lang.String readUTF() throws java.io.IOException { return null; } + public void registerValidation(java.io.ObjectInputValidation var0, int var1) throws java.io.NotActiveException, java.io.InvalidObjectException { } + protected java.lang.Class resolveClass(java.io.ObjectStreamClass var0) throws java.io.IOException, java.lang.ClassNotFoundException { return null; } + protected java.lang.Object resolveObject(java.lang.Object var0) throws java.io.IOException { return null; } + public int skipBytes(int var0) throws java.io.IOException { return 0; } + public static abstract class GetField { + public GetField() { } + public abstract java.io.ObjectStreamClass getObjectStreamClass(); + public abstract boolean defaulted(java.lang.String var0) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract boolean get(java.lang.String var0, boolean var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract char get(java.lang.String var0, char var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract byte get(java.lang.String var0, byte var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract short get(java.lang.String var0, short var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract int get(java.lang.String var0, int var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract long get(java.lang.String var0, long var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract float get(java.lang.String var0, float var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract double get(java.lang.String var0, double var1) throws java.io.IOException, java.lang.IllegalArgumentException; + public abstract java.lang.Object get(java.lang.String var0, java.lang.Object var1) throws java.io.IOException, java.lang.IllegalArgumentException; + } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputValidation.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputValidation.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputValidation.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputValidation.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,24 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectInputValidation.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface ObjectInputValidation { + public abstract void validateObject() throws java.io.InvalidObjectException; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectInputValidation.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutput.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutput.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutput.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutput.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,29 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectOutput.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface ObjectOutput extends java.io.DataOutput { + public abstract void close() throws java.io.IOException; + public abstract void flush() throws java.io.IOException; + public abstract void write(byte[] var0) throws java.io.IOException; + public abstract void write(byte[] var0, int var1, int var2) throws java.io.IOException; + public abstract void write(int var0) throws java.io.IOException; + public abstract void writeObject(java.lang.Object var0) throws java.io.IOException; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutput.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,68 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectOutputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class ObjectOutputStream extends java.io.OutputStream implements java.io.ObjectOutput, java.io.ObjectStreamConstants { + protected ObjectOutputStream() throws java.io.IOException, java.lang.SecurityException { } + public ObjectOutputStream(java.io.OutputStream var0) throws java.io.IOException { } + protected void annotateClass(java.lang.Class var0) throws java.io.IOException { } + protected void annotateProxyClass(java.lang.Class var0) throws java.io.IOException { } + public void close() throws java.io.IOException { } + public void defaultWriteObject() throws java.io.IOException { } + protected void drain() throws java.io.IOException { } + protected boolean enableReplaceObject(boolean var0) throws java.lang.SecurityException { return false; } + public void flush() throws java.io.IOException { } + public java.io.ObjectOutputStream.PutField putFields() throws java.io.IOException { return null; } + protected java.lang.Object replaceObject(java.lang.Object var0) throws java.io.IOException { return null; } + public void reset() throws java.io.IOException { } + public void useProtocolVersion(int var0) throws java.io.IOException { } + public void write(byte[] var0) throws java.io.IOException { } + public void write(byte[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } + public void writeBoolean(boolean var0) throws java.io.IOException { } + public void writeByte(int var0) throws java.io.IOException { } + public void writeBytes(java.lang.String var0) throws java.io.IOException { } + public void writeChar(int var0) throws java.io.IOException { } + public void writeChars(java.lang.String var0) throws java.io.IOException { } + public void writeDouble(double var0) throws java.io.IOException { } + public void writeFields() throws java.io.IOException { } + public void writeFloat(float var0) throws java.io.IOException { } + public void writeInt(int var0) throws java.io.IOException { } + public void writeLong(long var0) throws java.io.IOException { } + protected void writeClassDescriptor(java.io.ObjectStreamClass var0) throws java.io.IOException { } + public final void writeObject(java.lang.Object var0) throws java.io.IOException { } + protected void writeObjectOverride(java.lang.Object var0) throws java.io.IOException { } + public void writeShort(int var0) throws java.io.IOException { } + protected void writeStreamHeader() throws java.io.IOException { } + public void writeUTF(java.lang.String var0) throws java.io.IOException { } + public static abstract class PutField { + public PutField() { } + public abstract void put(java.lang.String var0, boolean var1); + public abstract void put(java.lang.String var0, char var1); + public abstract void put(java.lang.String var0, byte var1); + public abstract void put(java.lang.String var0, short var1); + public abstract void put(java.lang.String var0, int var1); + public abstract void put(java.lang.String var0, long var1); + public abstract void put(java.lang.String var0, float var1); + public abstract void put(java.lang.String var0, double var1); + public abstract void put(java.lang.String var0, java.lang.Object var1); + public abstract void write(java.io.ObjectOutput var0) throws java.io.IOException; + } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectOutputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamClass.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamClass.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamClass.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamClass.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,32 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectStreamClass.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class ObjectStreamClass implements java.io.Serializable { + public java.lang.Class forClass() { return null; } + public java.io.ObjectStreamField getField(java.lang.String var0) { return null; } + public java.io.ObjectStreamField[] getFields() { return null; } + public java.lang.String getName() { return null; } + public long getSerialVersionUID() { return 0l; } + public static java.io.ObjectStreamClass lookup(java.lang.Class var0) { return null; } + public java.lang.String toString() { return null; } + public final static java.io.ObjectStreamField[] NO_FIELDS; static { NO_FIELDS = null; } + private ObjectStreamClass() { } /* generated constructor to prevent compiler adding default public constructor */ +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamClass.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamConstants.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamConstants.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamConstants.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamConstants.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,50 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectStreamConstants.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract interface ObjectStreamConstants { + public final static short STREAM_MAGIC = -21267; + public final static short STREAM_VERSION = 5; + public final static byte TC_BASE = 112; + public final static byte TC_NULL = 112; + public final static byte TC_REFERENCE = 113; + public final static byte TC_CLASSDESC = 114; + public final static byte TC_OBJECT = 115; + public final static byte TC_STRING = 116; + public final static byte TC_ARRAY = 117; + public final static byte TC_CLASS = 118; + public final static byte TC_BLOCKDATA = 119; + public final static byte TC_ENDBLOCKDATA = 120; + public final static byte TC_RESET = 121; + public final static byte TC_BLOCKDATALONG = 122; + public final static byte TC_EXCEPTION = 123; + public final static byte TC_LONGSTRING = 124; + public final static byte TC_PROXYCLASSDESC = 125; + public final static byte TC_MAX = 125; + public final static int baseWireHandle = 8257536; + public final static int PROTOCOL_VERSION_1 = 1; + public final static int PROTOCOL_VERSION_2 = 2; + public final static java.io.SerializablePermission SUBCLASS_IMPLEMENTATION_PERMISSION = null; + public final static java.io.SerializablePermission SUBSTITUTION_PERMISSION = null; + public final static byte SC_WRITE_METHOD = 1; + public final static byte SC_SERIALIZABLE = 2; + public final static byte SC_EXTERNALIZABLE = 4; + public final static byte SC_BLOCK_DATA = 8; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamConstants.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,25 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectStreamException.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract class ObjectStreamException extends java.io.IOException { + protected ObjectStreamException() { } + protected ObjectStreamException(java.lang.String var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamField.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamField.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamField.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamField.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,33 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/ObjectStreamField.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class ObjectStreamField implements java.lang.Comparable { + public ObjectStreamField(java.lang.String var0, java.lang.Class var1) { } + public int compareTo(java.lang.Object var0) { return 0; } + public java.lang.String getName() { return null; } + public int getOffset() { return 0; } + public java.lang.Class getType() { return null; } + public char getTypeCode() { return 0; } + public java.lang.String getTypeString() { return null; } + public boolean isPrimitive() { return false; } + protected void setOffset(int var0) { } + public java.lang.String toString() { return null; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/ObjectStreamField.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OptionalDataException.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OptionalDataException.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OptionalDataException.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OptionalDataException.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,26 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/OptionalDataException.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class OptionalDataException extends java.io.ObjectStreamException { + public boolean eof; + public int length; + private OptionalDataException() { } /* generated constructor to prevent compiler adding default public constructor */ +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OptionalDataException.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,29 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/OutputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public abstract class OutputStream { + public OutputStream() { } + public void close() throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public void write(byte[] var0) throws java.io.IOException { } + public void write(byte[] var0, int var1, int var2) throws java.io.IOException { } + public abstract void write(int var0) throws java.io.IOException; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStreamWriter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStreamWriter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStreamWriter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStreamWriter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,31 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/OutputStreamWriter.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class OutputStreamWriter extends java.io.Writer { + public OutputStreamWriter(java.io.OutputStream var0) { } + public OutputStreamWriter(java.io.OutputStream var0, java.lang.String var1) throws java.io.UnsupportedEncodingException { } + public void close() throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public java.lang.String getEncoding() { return null; } + public void write(char[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } + public void write(java.lang.String var0, int var1, int var2) throws java.io.IOException { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/OutputStreamWriter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedInputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedInputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedInputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedInputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,35 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/PipedInputStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class PipedInputStream extends java.io.InputStream { + public PipedInputStream() { } + public PipedInputStream(java.io.PipedOutputStream var0) throws java.io.IOException { } + public int available() throws java.io.IOException { return 0; } + public void close() throws java.io.IOException { } + public void connect(java.io.PipedOutputStream var0) throws java.io.IOException { } + public int read() throws java.io.IOException { return 0; } + public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; } + protected void receive(int var0) throws java.io.IOException { } + protected byte[] buffer; + protected int in; + protected int out; + protected final static int PIPE_SIZE = 1024; +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedInputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedOutputStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedOutputStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedOutputStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedOutputStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/PipedOutputStream.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class PipedOutputStream extends java.io.OutputStream { + public PipedOutputStream() { } + public PipedOutputStream(java.io.PipedInputStream var0) throws java.io.IOException { } + public void close() throws java.io.IOException { } + public void connect(java.io.PipedInputStream var0) throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public void write(byte[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedOutputStream.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedReader.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedReader.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedReader.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedReader.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/PipedReader.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class PipedReader extends java.io.Reader { + public PipedReader() { } + public PipedReader(java.io.PipedWriter var0) throws java.io.IOException { } + public void close() throws java.io.IOException { } + public void connect(java.io.PipedWriter var0) throws java.io.IOException { } + public int read() throws java.io.IOException { return 0; } + public int read(char[] var0, int var1, int var2) throws java.io.IOException { return 0; } + public boolean ready() throws java.io.IOException { return false; } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedReader.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedWriter.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedWriter.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedWriter.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedWriter.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,30 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/PipedWriter.java,v 1.6 2006/03/14 01:20:24 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class PipedWriter extends java.io.Writer { + public PipedWriter() { } + public PipedWriter(java.io.PipedReader var0) throws java.io.IOException { } + public void close() throws java.io.IOException { } + public void connect(java.io.PipedReader var0) throws java.io.IOException { } + public void flush() throws java.io.IOException { } + public void write(char[] var0, int var1, int var2) throws java.io.IOException { } + public void write(int var0) throws java.io.IOException { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PipedWriter.java ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PrintStream.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PrintStream.java?view=auto&rev=465396 ============================================================================== --- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PrintStream.java (added) +++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PrintStream.java Wed Oct 18 15:05:15 2006 @@ -0,0 +1,50 @@ +/* + * $Header: /cvshome/build/ee.foundation/src/java/io/PrintStream.java,v 1.6 2006/03/14 01:20:23 hargrave Exp $ + * + * (C) Copyright 2001 Sun Microsystems, Inc. + * Copyright (c) OSGi Alliance (2001, 2005). All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.io; +public class PrintStream extends java.io.FilterOutputStream { + public PrintStream(java.io.OutputStream var0) { super((java.io.OutputStream) null); } + public PrintStream(java.io.OutputStream var0, boolean var1) { super((java.io.OutputStream) null); } + public boolean checkError() { return false; } + public void close() { } + public void flush() { } + public void print(char[] var0) { } + public void print(char var0) { } + public void print(double var0) { } + public void print(float var0) { } + public void print(int var0) { } + public void print(long var0) { } + public void print(java.lang.Object var0) { } + public void print(java.lang.String var0) { } + public void print(boolean var0) { } + public void println() { } + public void println(char[] var0) { } + public void println(char var0) { } + public void println(double var0) { } + public void println(float var0) { } + public void println(int var0) { } + public void println(long var0) { } + public void println(java.lang.Object var0) { } + public void println(java.lang.String var0) { } + public void println(boolean var0) { } + protected void setError() { } + public void write(byte[] var0, int var1, int var2) { } + public void write(int var0) { } +} + Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/io/PrintStream.java ------------------------------------------------------------------------------ svn:eol-style = native