/******************************************************************************* * Copyright (c) 2000, 2012 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 org.eclipse.jdt.launching.sourcelookup; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; /** * Storage implementation for zip entries. * <p> * This class may be instantiated. * </p> * @see ArchiveSourceLocation * @see org.eclipse.core.resources.IStorage * @since 2.0 * @deprecated In 3.0 this class is provided by the debug platform and clients * should use the replacement class * <code>org.eclipse.debug.core.sourcelookup.containers.ZipEntryStorage</code>. * @noextend This class is not intended to be sub-classed by clients. */ @Deprecated public class ZipEntryStorage extends org.eclipse.debug.core.sourcelookup.containers.ZipEntryStorage { /** * Constructs a new storage implementation for the * given zip entry in the specified zip file * * @param archive zip file * @param entry zip entry */ public ZipEntryStorage(ZipFile archive, ZipEntry entry) { super(archive, entry); } }