blob: 90e734658b6f03a0558a01d26b9a3e5e2d37ea16 [file] [log] [blame]
package org.eclipse.core.internal.plugins;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.model.*;
import org.eclipse.core.internal.plugins.IModel;
public class Library extends LibraryModel implements ILibrary {
public Library()
{
super();
}
public String[] getContentFilters() {
if (!isExported() || isFullyExported())
return null;
return getExports();
}
public IPath getPath() {
return new Path(getName());
}
}