blob: 2cbeab4e7ca51ecd37bfc0892d1afd78cb74a749 [file] [log] [blame]
package org.eclipse.update.examples.freeform;
import java.net.MalformedURLException;
import java.net.URL;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.update.core.SiteContentProvider;
public class FreeFormSiteContentProvider extends SiteContentProvider {
/**
* Constructor for SiteContentProvider.
*/
public FreeFormSiteContentProvider(URL url) {
super(url);
}
/*
* @see ISiteContentProvider#getArchiveReference(String)
*/
public URL getArchiveReference(String id) throws CoreException {
try {
return new URL(getURL(),id);
} catch(MalformedURLException e) {
throw newCoreException("Unable to return archive URL",e);
}
}
private CoreException newCoreException(String s, Throwable e) throws CoreException {
return new CoreException(new Status(IStatus.ERROR,"org.eclipse.update.examples",0,s,e));
}
}