blob: a79e752f2577680a71e5e09d6cc5fd41bccc2835 [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.ui.jarpackager;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
/**
* Reads the description file of a JAR package data object
* into such an object.
* <p>
* The format is defined by the client who implements the
* reader/writer pair.
* </p>
*
* @see org.eclipse.jdt.ui.jarpackager.JarPackageData
* @see org.eclipse.jdt.ui.jarpackager.IJarDescriptionWriter
* @since 2.0
*/
public interface IJarDescriptionReader {
/**
* Reads Jar Package description and fills data into
* the JAR Package data object.
* <p>
* It is the client's responsibility to close this reader.
* </p>
*
* @param jarPackageData the object into which data is filled
* @throws CoreException if read failed, e.g. I/O error during read operation
*/
public void read(JarPackageData jarPackageData) throws CoreException;
/**
* Closes this reader.
* <p>
* It is the client's responsibility to close this reader.
* </p>
*
* @throws CoreException if closing fails, e.g. I/O error during close operation
*/
public void close() throws CoreException;
/**
* Returns the status of this reader.
* If there were any errors, the result is a status object containing
* individual status objects for each error.
* If there were no errors, the result is a status object with error code <code>OK</code>.
*
* @return the status of this operation
*/
public IStatus getStatus();
}