Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2020-02-29 22:35:01 +0000
committerJay Arthanareeswaran2020-07-21 08:43:08 +0000
commitd925ea3982e460755a90587fe85b43218963473b (patch)
treedaebf6d5b0dff76238a830611ba6451c8141e4d4 /JCL/converterJclMin1.7/src/java/util/zip
parent1b2e21d75fbd2ca2e3e97b404d3586418b65f7de (diff)
downloadeclipse.jdt.core-d925ea3982e460755a90587fe85b43218963473b.tar.gz
eclipse.jdt.core-d925ea3982e460755a90587fe85b43218963473b.tar.xz
eclipse.jdt.core-d925ea3982e460755a90587fe85b43218963473b.zip
Bug 560658 - [test] systematic maintenance of jclMin* & converterJclMin*Y20200722-0040Y20200721-0610
Change-Id: Icce023f64a774d19d16070e3de4b99ccba094273 Signed-off-by: Stephan Herrmann <stephan.herrmann@berlin.de>
Diffstat (limited to 'JCL/converterJclMin1.7/src/java/util/zip')
-rw-r--r--JCL/converterJclMin1.7/src/java/util/zip/ZipEntry.java18
-rw-r--r--JCL/converterJclMin1.7/src/java/util/zip/ZipFile.java23
2 files changed, 41 insertions, 0 deletions
diff --git a/JCL/converterJclMin1.7/src/java/util/zip/ZipEntry.java b/JCL/converterJclMin1.7/src/java/util/zip/ZipEntry.java
new file mode 100644
index 0000000000..7c82b06d8c
--- /dev/null
+++ b/JCL/converterJclMin1.7/src/java/util/zip/ZipEntry.java
@@ -0,0 +1,18 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package java.util.zip;
+
+
+public class ZipEntry {
+ public long getSize() {
+ return 0;
+ }
+}
diff --git a/JCL/converterJclMin1.7/src/java/util/zip/ZipFile.java b/JCL/converterJclMin1.7/src/java/util/zip/ZipFile.java
new file mode 100644
index 0000000000..56c853a2bc
--- /dev/null
+++ b/JCL/converterJclMin1.7/src/java/util/zip/ZipFile.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package java.util.zip;
+
+import java.io.InputStream;
+
+
+public class ZipFile {
+ public ZipEntry getEntry(String s) {
+ return null;
+ }
+ public InputStream getInputStream(ZipEntry zipEntry) {
+ return null;
+ }
+}

Back to the top