1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.launching.sourcelookup; 12 13 14 import java.util.zip.ZipEntry; 15 import java.util.zip.ZipFile; 16 17 /** 18 * Storage implementation for zip entries. 19 * <p> 20 * This class may be instantiated; it is not intended to be subclassed. 21 * </p> 22 * @see ArchiveSourceLocation 23 * @see org.eclipse.core.resources.IStorage 24 * @since 2.0 25 * @deprecated In 3.0 this class is provided by the debug platform and clients 26 * should use the replacement class 27 * <code>org.eclipse.debug.core.sourcelookup.containers.ZipEntryStorage</code>. 28 */ 29 public class ZipEntryStorage extends org.eclipse.debug.core.sourcelookup.containers.ZipEntryStorage { 30 31 /** 32 * Constructs a new storage implementation for the 33 * given zip entry in the specified zip file 34 * 35 * @param archive zip file 36 * @param entry zip entry 37 */ 38 public ZipEntryStorage(ZipFile archive, ZipEntry entry) { 39 super(archive, entry); 40 } 41 42 } 43