blob: a487268435d12cab6ffe94130c93cda0bedd164c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.pde.internal.core.text.bundle;
import org.eclipse.pde.internal.core.ibundle.IBundle;
public class BundleClasspathHeader extends CompositeManifestHeader {
private static final long serialVersionUID = 1L;
public BundleClasspathHeader(String name, String value, IBundle bundle, String lineDelimiter) {
super(name, value, bundle, lineDelimiter);
}
public void addLibrary(String name) {
addManifestElement(name);
}
/**
* @param name
* @param index
*/
public void addLibrary(String name, int index) {
addManifestElement(name, index);
}
public void removeLibrary(String name) {
removeManifestElement(name);
}
}