You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2006/10/19 00:05:29 UTC

svn commit: r465396 [12/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/jav...

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Adler32.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Adler32.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Adler32.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Adler32.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,29 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/Adler32.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class Adler32 implements java.util.zip.Checksum {
+	public Adler32() { }
+	public long getValue() { return 0l; }
+	public void reset() { }
+	public void update(int var0) { }
+	public void update(byte[] var0) { }
+	public void update(byte[] var0, int var1, int var2) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Adler32.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CRC32.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CRC32.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CRC32.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CRC32.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,29 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/CRC32.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class CRC32 implements java.util.zip.Checksum {
+	public CRC32() { }
+	public long getValue() { return 0l; }
+	public void reset() { }
+	public void update(int var0) { }
+	public void update(byte[] var0) { }
+	public void update(byte[] var0, int var1, int var2) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CRC32.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedInputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedInputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedInputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedInputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,28 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/CheckedInputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class CheckedInputStream extends java.io.FilterInputStream {
+	public CheckedInputStream(java.io.InputStream var0, java.util.zip.Checksum var1) { super((java.io.InputStream) null); }
+	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 java.util.zip.Checksum getChecksum() { return null; }
+	public long skip(long var0) throws java.io.IOException { return 0l; }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedInputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedOutputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedOutputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedOutputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedOutputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,27 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/CheckedOutputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class CheckedOutputStream extends java.io.FilterOutputStream {
+	public CheckedOutputStream(java.io.OutputStream var0, java.util.zip.Checksum var1) { super((java.io.OutputStream) null); }
+	public java.util.zip.Checksum getChecksum() { return null; }
+	public void write(int var0) throws java.io.IOException { }
+	public void write(byte[] var0, int var1, int var2) throws java.io.IOException { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/CheckedOutputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Checksum.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Checksum.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Checksum.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Checksum.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,27 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/Checksum.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public abstract interface Checksum {
+	public abstract long getValue();
+	public abstract void reset();
+	public abstract void update(int var0);
+	public abstract void update(byte[] var0, int var1, int var2);
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Checksum.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DataFormatException.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DataFormatException.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DataFormatException.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DataFormatException.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,25 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/DataFormatException.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class DataFormatException extends java.lang.Exception {
+	public DataFormatException() { }
+	public DataFormatException(java.lang.String var0) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DataFormatException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Deflater.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Deflater.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Deflater.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Deflater.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,51 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/Deflater.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class Deflater {
+	public int deflate(byte[] var0) { return 0; }
+	public int deflate(byte[] var0, int var1, int var2) { return 0; }
+	public void end() { }
+	protected void finalize() { }
+	public void finish() { }
+	public boolean finished() { return false; }
+	public int getAdler() { return 0; }
+	public int getTotalIn() { return 0; }
+	public int getTotalOut() { return 0; }
+	public boolean needsInput() { return false; }
+	public void reset() { }
+	public void setDictionary(byte[] var0) { }
+	public void setDictionary(byte[] var0, int var1, int var2) { }
+	public void setInput(byte[] var0) { }
+	public void setInput(byte[] var0, int var1, int var2) { }
+	public void setLevel(int var0) { }
+	public void setStrategy(int var0) { }
+	public Deflater() { }
+	public Deflater(int var0, boolean var1) { }
+	public Deflater(int var0) { }
+	public final static int BEST_COMPRESSION = 9;
+	public final static int BEST_SPEED = 1;
+	public final static int DEFAULT_COMPRESSION = -1;
+	public final static int DEFAULT_STRATEGY = 0;
+	public final static int DEFLATED = 8;
+	public final static int FILTERED = 1;
+	public final static int HUFFMAN_ONLY = 2;
+	public final static int NO_COMPRESSION = 0;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Deflater.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DeflaterOutputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DeflaterOutputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DeflaterOutputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DeflaterOutputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,33 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/DeflaterOutputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class DeflaterOutputStream extends java.io.FilterOutputStream {
+	public DeflaterOutputStream(java.io.OutputStream var0, java.util.zip.Deflater var1) { super((java.io.OutputStream) null); }
+	public DeflaterOutputStream(java.io.OutputStream var0) { super((java.io.OutputStream) null); }
+	public DeflaterOutputStream(java.io.OutputStream var0, java.util.zip.Deflater var1, int var2) { super((java.io.OutputStream) null); }
+	protected void deflate() throws java.io.IOException { }
+	public void close() throws java.io.IOException { }
+	public void finish() throws java.io.IOException { }
+	public void write(int var0) throws java.io.IOException { }
+	public void write(byte[] var0, int var1, int var2) throws java.io.IOException { }
+	protected byte[] buf;
+	protected java.util.zip.Deflater def;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/DeflaterOutputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPInputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPInputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPInputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPInputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,30 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/GZIPInputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class GZIPInputStream extends java.util.zip.InflaterInputStream {
+	public GZIPInputStream(java.io.InputStream var0) throws java.io.IOException { super((java.io.InputStream) null, (java.util.zip.Inflater) null, 0); }
+	public GZIPInputStream(java.io.InputStream var0, int var1) throws java.io.IOException { super((java.io.InputStream) null, (java.util.zip.Inflater) null, 0); }
+	public int read(byte[] var0, int var1, int var2) throws java.io.IOException { return 0; }
+	public void close() throws java.io.IOException { }
+	protected java.util.zip.CRC32 crc;
+	protected boolean eos;
+	public final static int GZIP_MAGIC = 35615;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPInputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPOutputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPOutputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPOutputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPOutputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,29 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/GZIPOutputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class GZIPOutputStream extends java.util.zip.DeflaterOutputStream {
+	public GZIPOutputStream(java.io.OutputStream var0) throws java.io.IOException { super((java.io.OutputStream) null, (java.util.zip.Deflater) null, 0); }
+	public GZIPOutputStream(java.io.OutputStream var0, int var1) throws java.io.IOException { super((java.io.OutputStream) null, (java.util.zip.Deflater) null, 0); }
+	public void finish() throws java.io.IOException { }
+	public void close() throws java.io.IOException { }
+	public void write(byte[] var0, int var1, int var2) throws java.io.IOException { }
+	protected java.util.zip.CRC32 crc;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/GZIPOutputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Inflater.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Inflater.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Inflater.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Inflater.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,41 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/Inflater.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class Inflater {
+	public void end() { }
+	protected void finalize() { }
+	public boolean finished() { return false; }
+	public int getAdler() { return 0; }
+	public int getRemaining() { return 0; }
+	public int getTotalIn() { return 0; }
+	public int getTotalOut() { return 0; }
+	public int inflate(byte[] var0) throws java.util.zip.DataFormatException { return 0; }
+	public int inflate(byte[] var0, int var1, int var2) throws java.util.zip.DataFormatException { return 0; }
+	public Inflater() { }
+	public Inflater(boolean var0) { }
+	public boolean needsDictionary() { return false; }
+	public boolean needsInput() { return false; }
+	public void reset() { }
+	public void setDictionary(byte[] var0) { }
+	public void setDictionary(byte[] var0, int var1, int var2) { }
+	public void setInput(byte[] var0) { }
+	public void setInput(byte[] var0, int var1, int var2) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/Inflater.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/InflaterInputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/InflaterInputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/InflaterInputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/InflaterInputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,35 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/InflaterInputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class InflaterInputStream extends java.io.FilterInputStream {
+	public InflaterInputStream(java.io.InputStream var0) { super((java.io.InputStream) null); }
+	public InflaterInputStream(java.io.InputStream var0, java.util.zip.Inflater var1) { super((java.io.InputStream) null); }
+	public InflaterInputStream(java.io.InputStream var0, java.util.zip.Inflater var1, int var2) { super((java.io.InputStream) null); }
+	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 fill() throws java.io.IOException { }
+	public long skip(long var0) throws java.io.IOException { return 0l; }
+	public int available() throws java.io.IOException { return 0; }
+	public void close() throws java.io.IOException { }
+	protected java.util.zip.Inflater inf;
+	protected byte[] buf;
+	protected int len;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/InflaterInputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipConstants.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipConstants.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipConstants.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipConstants.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,63 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipConstants.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+abstract interface ZipConstants {
+	public final static long LOCSIG = 67324752l;
+	public final static long EXTSIG = 134695760l;
+	public final static long CENSIG = 33639248l;
+	public final static long ENDSIG = 101010256l;
+	public final static int LOCHDR = 30;
+	public final static int EXTHDR = 16;
+	public final static int CENHDR = 46;
+	public final static int ENDHDR = 22;
+	public final static int LOCVER = 4;
+	public final static int LOCFLG = 6;
+	public final static int LOCHOW = 8;
+	public final static int LOCTIM = 10;
+	public final static int LOCCRC = 14;
+	public final static int LOCSIZ = 18;
+	public final static int LOCLEN = 22;
+	public final static int LOCNAM = 26;
+	public final static int LOCEXT = 28;
+	public final static int EXTCRC = 4;
+	public final static int EXTSIZ = 8;
+	public final static int EXTLEN = 12;
+	public final static int CENVEM = 4;
+	public final static int CENVER = 6;
+	public final static int CENFLG = 8;
+	public final static int CENHOW = 10;
+	public final static int CENTIM = 12;
+	public final static int CENCRC = 16;
+	public final static int CENSIZ = 20;
+	public final static int CENLEN = 24;
+	public final static int CENNAM = 28;
+	public final static int CENEXT = 30;
+	public final static int CENCOM = 32;
+	public final static int CENDSK = 34;
+	public final static int CENATT = 36;
+	public final static int CENATX = 38;
+	public final static int CENOFF = 42;
+	public final static int ENDSUB = 8;
+	public final static int ENDTOT = 10;
+	public final static int ENDSIZ = 12;
+	public final static int ENDOFF = 16;
+	public final static int ENDCOM = 20;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipConstants.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipEntry.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipEntry.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipEntry.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipEntry.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,46 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipEntry.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class ZipEntry implements java.util.zip.ZipConstants, java.lang.Cloneable {
+	public ZipEntry(java.lang.String var0) { }
+	public java.lang.String getComment() { return null; }
+	public long getCompressedSize() { return 0l; }
+	public long getCrc() { return 0l; }
+	public byte[] getExtra() { return null; }
+	public int getMethod() { return 0; }
+	public java.lang.String getName() { return null; }
+	public long getSize() { return 0l; }
+	public long getTime() { return 0l; }
+	public boolean isDirectory() { return false; }
+	public void setComment(java.lang.String var0) { }
+	public void setCompressedSize(long var0) { }
+	public void setCrc(long var0) { }
+	public void setExtra(byte[] var0) { }
+	public void setMethod(int var0) { }
+	public void setSize(long var0) { }
+	public void setTime(long var0) { }
+	public java.lang.String toString() { return null; }
+	public ZipEntry(java.util.zip.ZipEntry var0) { }
+	public java.lang.Object clone() { return null; }
+	public int hashCode() { return 0; }
+	public final static int DEFLATED = 8;
+	public final static int STORED = 0;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipEntry.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipException.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipException.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipException.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipException.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,25 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipException.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class ZipException extends java.io.IOException {
+	public ZipException() { }
+	public ZipException(java.lang.String var0) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipFile.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipFile.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipFile.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipFile.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,35 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipFile.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class ZipFile implements java.util.zip.ZipConstants {
+	public ZipFile(java.io.File var0) throws java.util.zip.ZipException, java.io.IOException { }
+	public ZipFile(java.io.File var0, int var1) throws java.io.IOException { }
+	public ZipFile(java.lang.String var0) throws java.io.IOException { }
+	protected void finalize() throws java.io.IOException { }
+	public void close() throws java.io.IOException { }
+	public java.util.Enumeration entries() { return null; }
+	public java.util.zip.ZipEntry getEntry(java.lang.String var0) { return null; }
+	public java.io.InputStream getInputStream(java.util.zip.ZipEntry var0) throws java.io.IOException { return null; }
+	public java.lang.String getName() { return null; }
+	public int size() { return 0; }
+	public final static int OPEN_READ = 1;
+	public final static int OPEN_DELETE = 4;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipFile.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipInputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipInputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipInputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipInputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,31 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipInputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class ZipInputStream extends java.util.zip.InflaterInputStream implements java.util.zip.ZipConstants {
+	public ZipInputStream(java.io.InputStream var0) { super((java.io.InputStream) null, (java.util.zip.Inflater) null, 0); }
+	public void close() throws java.io.IOException { }
+	public void closeEntry() throws java.io.IOException { }
+	public java.util.zip.ZipEntry getNextEntry() throws java.io.IOException { return null; }
+	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; }
+	public int available() throws java.io.IOException { return 0; }
+	protected java.util.zip.ZipEntry createZipEntry(java.lang.String var0) { return null; }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipInputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipOutputStream.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipOutputStream.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipOutputStream.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipOutputStream.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,34 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/java/util/zip/ZipOutputStream.java,v 1.6 2006/03/14 01:20:30 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.util.zip;
+public class ZipOutputStream extends java.util.zip.DeflaterOutputStream implements java.util.zip.ZipConstants {
+	public ZipOutputStream(java.io.OutputStream var0) { super((java.io.OutputStream) null, (java.util.zip.Deflater) null, 0); }
+	public void close() throws java.io.IOException { }
+	public void closeEntry() throws java.io.IOException { }
+	public void finish() throws java.io.IOException { }
+	public void putNextEntry(java.util.zip.ZipEntry var0) throws java.io.IOException { }
+	public void setComment(java.lang.String var0) { }
+	public void setLevel(int var0) { }
+	public void setMethod(int var0) { }
+	public void write(byte[] var0, int var1, int var2) throws java.io.IOException { }
+	public final static int DEFLATED = 8;
+	public final static int STORED = 0;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/java/util/zip/ZipOutputStream.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,24 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/Connection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface Connection {
+	public abstract void close() throws java.io.IOException;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ConnectionNotFoundException.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ConnectionNotFoundException.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ConnectionNotFoundException.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ConnectionNotFoundException.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,25 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/ConnectionNotFoundException.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public class ConnectionNotFoundException extends java.io.IOException {
+	public ConnectionNotFoundException() { }
+	public ConnectionNotFoundException(java.lang.String var0) { }
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ConnectionNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connector.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connector.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connector.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connector.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,34 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/Connector.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public class Connector {
+	public static javax.microedition.io.Connection open(java.lang.String var0) throws java.io.IOException { return null; }
+	public static javax.microedition.io.Connection open(java.lang.String var0, int var1) throws java.io.IOException { return null; }
+	public static javax.microedition.io.Connection open(java.lang.String var0, int var1, boolean var2) throws java.io.IOException { return null; }
+	public static java.io.DataInputStream openDataInputStream(java.lang.String var0) throws java.io.IOException { return null; }
+	public static java.io.DataOutputStream openDataOutputStream(java.lang.String var0) throws java.io.IOException { return null; }
+	public static java.io.InputStream openInputStream(java.lang.String var0) throws java.io.IOException { return null; }
+	public static java.io.OutputStream openOutputStream(java.lang.String var0) throws java.io.IOException { return null; }
+	public final static int READ = 1;
+	public final static int WRITE = 2;
+	public final static int READ_WRITE = 3;
+	private Connector() { } /* generated constructor to prevent compiler adding default public constructor */
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Connector.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ContentConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ContentConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ContentConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ContentConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,26 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/ContentConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface ContentConnection extends javax.microedition.io.StreamConnection {
+	public abstract java.lang.String getEncoding();
+	public abstract long getLength();
+	public abstract java.lang.String getType();
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/ContentConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Datagram.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Datagram.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Datagram.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Datagram.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,32 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/Datagram.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface Datagram extends java.io.DataInput, java.io.DataOutput {
+	public abstract java.lang.String getAddress();
+	public abstract byte[] getData();
+	public abstract int getLength();
+	public abstract int getOffset();
+	public abstract void reset();
+	public abstract void setAddress(javax.microedition.io.Datagram var0);
+	public abstract void setAddress(java.lang.String var0) throws java.io.IOException;
+	public abstract void setData(byte[] var0, int var1, int var2);
+	public abstract void setLength(int var0);
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/Datagram.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/DatagramConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/DatagramConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/DatagramConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/DatagramConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,31 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/DatagramConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface DatagramConnection extends javax.microedition.io.Connection {
+	public abstract int getMaximumLength() throws java.io.IOException;
+	public abstract int getNominalLength() throws java.io.IOException;
+	public abstract javax.microedition.io.Datagram newDatagram(byte[] var0, int var1) throws java.io.IOException;
+	public abstract javax.microedition.io.Datagram newDatagram(byte[] var0, int var1, java.lang.String var2) throws java.io.IOException;
+	public abstract javax.microedition.io.Datagram newDatagram(int var0) throws java.io.IOException;
+	public abstract javax.microedition.io.Datagram newDatagram(int var0, java.lang.String var1) throws java.io.IOException;
+	public abstract void receive(javax.microedition.io.Datagram var0) throws java.io.IOException;
+	public abstract void send(javax.microedition.io.Datagram var0) throws java.io.IOException;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/DatagramConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/HttpConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/HttpConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/HttpConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/HttpConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,85 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/HttpConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface HttpConnection extends javax.microedition.io.ContentConnection {
+	public abstract long getDate() throws java.io.IOException;
+	public abstract long getExpiration() throws java.io.IOException;
+	public abstract java.lang.String getFile();
+	public abstract java.lang.String getHeaderField(int var0) throws java.io.IOException;
+	public abstract java.lang.String getHeaderField(java.lang.String var0) throws java.io.IOException;
+	public abstract long getHeaderFieldDate(java.lang.String var0, long var1) throws java.io.IOException;
+	public abstract int getHeaderFieldInt(java.lang.String var0, int var1) throws java.io.IOException;
+	public abstract java.lang.String getHeaderFieldKey(int var0) throws java.io.IOException;
+	public abstract java.lang.String getHost();
+	public abstract long getLastModified() throws java.io.IOException;
+	public abstract int getPort();
+	public abstract java.lang.String getProtocol();
+	public abstract java.lang.String getQuery();
+	public abstract java.lang.String getRef();
+	public abstract java.lang.String getRequestMethod();
+	public abstract java.lang.String getRequestProperty(java.lang.String var0);
+	public abstract int getResponseCode() throws java.io.IOException;
+	public abstract java.lang.String getResponseMessage() throws java.io.IOException;
+	public abstract java.lang.String getURL();
+	public abstract void setRequestMethod(java.lang.String var0) throws java.io.IOException;
+	public abstract void setRequestProperty(java.lang.String var0, java.lang.String var1) throws java.io.IOException;
+	public final static java.lang.String GET = "GET";
+	public final static java.lang.String HEAD = "HEAD";
+	public final static java.lang.String POST = "POST";
+	public final static int HTTP_ACCEPTED = 202;
+	public final static int HTTP_BAD_GATEWAY = 502;
+	public final static int HTTP_BAD_METHOD = 405;
+	public final static int HTTP_BAD_REQUEST = 400;
+	public final static int HTTP_CLIENT_TIMEOUT = 408;
+	public final static int HTTP_CONFLICT = 409;
+	public final static int HTTP_CREATED = 201;
+	public final static int HTTP_ENTITY_TOO_LARGE = 413;
+	public final static int HTTP_EXPECT_FAILED = 417;
+	public final static int HTTP_FORBIDDEN = 403;
+	public final static int HTTP_GATEWAY_TIMEOUT = 504;
+	public final static int HTTP_GONE = 410;
+	public final static int HTTP_INTERNAL_ERROR = 500;
+	public final static int HTTP_LENGTH_REQUIRED = 411;
+	public final static int HTTP_MOVED_PERM = 301;
+	public final static int HTTP_MOVED_TEMP = 302;
+	public final static int HTTP_MULT_CHOICE = 300;
+	public final static int HTTP_NO_CONTENT = 204;
+	public final static int HTTP_NOT_ACCEPTABLE = 406;
+	public final static int HTTP_NOT_AUTHORITATIVE = 203;
+	public final static int HTTP_NOT_FOUND = 404;
+	public final static int HTTP_NOT_IMPLEMENTED = 501;
+	public final static int HTTP_NOT_MODIFIED = 304;
+	public final static int HTTP_OK = 200;
+	public final static int HTTP_PARTIAL = 206;
+	public final static int HTTP_PAYMENT_REQUIRED = 402;
+	public final static int HTTP_PRECON_FAILED = 412;
+	public final static int HTTP_PROXY_AUTH = 407;
+	public final static int HTTP_REQ_TOO_LONG = 414;
+	public final static int HTTP_RESET = 205;
+	public final static int HTTP_SEE_OTHER = 303;
+	public final static int HTTP_TEMP_REDIRECT = 307;
+	public final static int HTTP_UNAUTHORIZED = 401;
+	public final static int HTTP_UNAVAILABLE = 503;
+	public final static int HTTP_UNSUPPORTED_RANGE = 416;
+	public final static int HTTP_UNSUPPORTED_TYPE = 415;
+	public final static int HTTP_USE_PROXY = 305;
+	public final static int HTTP_VERSION = 505;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/HttpConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/InputConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/InputConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/InputConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/InputConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,25 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/InputConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface InputConnection extends javax.microedition.io.Connection {
+	public abstract java.io.DataInputStream openDataInputStream() throws java.io.IOException;
+	public abstract java.io.InputStream openInputStream() throws java.io.IOException;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/InputConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/OutputConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/OutputConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/OutputConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/OutputConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,25 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/OutputConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface OutputConnection extends javax.microedition.io.Connection {
+	public abstract java.io.DataOutputStream openDataOutputStream() throws java.io.IOException;
+	public abstract java.io.OutputStream openOutputStream() throws java.io.IOException;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/OutputConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnection.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnection.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnection.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnection.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,23 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/StreamConnection.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface StreamConnection extends javax.microedition.io.InputConnection, javax.microedition.io.OutputConnection {
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnectionNotifier.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnectionNotifier.java?view=auto&rev=465396
==============================================================================
--- incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnectionNotifier.java (added)
+++ incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnectionNotifier.java Wed Oct 18 15:05:15 2006
@@ -0,0 +1,24 @@
+/*
+ * $Header: /cvshome/build/ee.foundation/src/javax/microedition/io/StreamConnectionNotifier.java,v 1.6 2006/03/14 01:20:29 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 javax.microedition.io;
+public abstract interface StreamConnectionNotifier extends javax.microedition.io.Connection {
+	public abstract javax.microedition.io.StreamConnection acceptAndOpen() throws java.io.IOException;
+}
+

Propchange: incubator/felix/trunk/org.osgi.foundation/src/main/java/javax/microedition/io/StreamConnectionNotifier.java
------------------------------------------------------------------------------
    svn:eol-style = native