1 11 package org.eclipse.update.internal.core; 12 13 import java.io.IOException ; 14 import java.net.URL ; 15 16 import org.eclipse.core.runtime.CoreException; 17 import org.eclipse.update.core.ContentReference; 18 import org.eclipse.update.core.FeatureContentProvider; 19 import org.eclipse.update.core.INonPluginEntry; 20 import org.eclipse.update.core.IPluginEntry; 21 import org.eclipse.update.core.IVerifier; 22 import org.eclipse.update.core.InstallMonitor; 23 24 public class DigestContentProvider extends FeatureContentProvider { 25 26 public DigestContentProvider(URL base) { 27 super(base); 28 } 30 31 32 public ContentReference asLocalReference( ContentReference ref, 33 InstallMonitor monitor) throws IOException , CoreException { 34 return super.asLocalReference(ref, monitor); 35 } 36 37 public ContentReference[] getArchiveReferences(InstallMonitor monitor) 38 throws CoreException { 39 return null; 41 } 42 43 public ContentReference[] getFeatureEntryArchiveReferences( 44 InstallMonitor monitor) throws CoreException { 45 return null; 47 } 48 49 public ContentReference[] getFeatureEntryContentReferences( 50 InstallMonitor monitor) throws CoreException { 51 return null; 53 } 54 55 public ContentReference getFeatureManifestReference(InstallMonitor monitor) 56 throws CoreException { 57 return null; 59 } 60 61 public ContentReference[] getNonPluginEntryArchiveReferences( 62 INonPluginEntry nonPluginEntry, InstallMonitor monitor) 63 throws CoreException { 64 return null; 66 } 67 68 public ContentReference[] getPluginEntryArchiveReferences( 69 IPluginEntry pluginEntry, InstallMonitor monitor) 70 throws CoreException { 71 return null; 73 } 74 75 public ContentReference[] getPluginEntryContentReferences( 76 IPluginEntry pluginEntry, InstallMonitor monitor) 77 throws CoreException { 78 return null; 80 } 81 82 public IVerifier getVerifier() throws CoreException { 83 return null; 85 } 86 87 } 88 | Popular Tags |