blob: fafaa2052c4940e663e5ff7f8c1ca920e308cabd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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; it is not intended to be subclassed.
* </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>.
*/
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);
}
}