blob: 4612e07bef0ee5e5a29047335c14a24fae33ca20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 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.jst.j2ee.commonarchivecore.internal.helpers;
/**
* Helper class for manifest files
* @deprecated
*/
public class ArchiveManifestImpl extends org.eclipse.jst.common.internal.modulecore.util.ArchiveManifestImpl
implements org.eclipse.jst.j2ee.commonarchivecore.internal.helpers.ArchiveManifest {
/**
* ArchiveManifest constructor comment.
*/
public ArchiveManifestImpl() {
super();
}
/**
* ArchiveManifest constructor comment.
*
* @param is
* java.io.InputStream
* @throws java.io.IOException
* The exception description.
*/
public ArchiveManifestImpl(java.io.InputStream is) throws java.io.IOException {
super(is);
}
public ArchiveManifestImpl(java.util.jar.Manifest man) {
super(man);
}
}