blob: b3e8007bc0d89ad0cdf32c91634b3d28fd96e26d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 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.osgi.baseadaptor.bundlefile;
import java.io.*;
import java.net.URL;
/**
* A BundleEntry represents one entry of a BundleFile.
* <p>
* Clients may extend this class.
* </p>
* @since 3.1
*/
public abstract class BundleEntry {
/**
* Return an InputStream for the entry.
*
* @return InputStream for the entry.
* @throws java.io.IOException If an error occurs reading the bundle.
*/
public abstract InputStream getInputStream() throws IOException;
/**
* Return the size of the entry (uncompressed).
*
* @return size of entry.
*/
public abstract long getSize();
/**
* Return the name of the entry.
*
* @return name of entry.
*/
public abstract String getName();
/**
* Get the modification time for this BundleEntry.
* <p>If the modification time has not been set,
* this method will return <tt>-1</tt>.
*
* @return last modification time.
*/
public abstract long getTime();
/**
* Get a URL to the bundle entry that uses a common protocol (i.e. file:
* jar: or http: etc.).
* @return a URL to the bundle entry that uses a common protocol
*/
public abstract URL getLocalURL();
/**
* Get a URL to the content of the bundle entry that uses the file: protocol.
* The content of the bundle entry may be downloaded or extracted to the local
* file system in order to create a file: URL.
* @return a URL to the content of the bundle entry that uses the file: protocol
*/
public abstract URL getFileURL();
/**
* Return the name of this BundleEntry by calling getName().
*
* @return String representation of this BundleEntry.
*/
public String toString() {
return (getName());
}
}