1 11 package org.eclipse.update.internal.core; 12 13 14 import org.eclipse.core.runtime.*; 15 import org.eclipse.update.core.*; 16 17 21 22 public interface ISiteContentConsumer { 23 24 31 public void store(ContentReference contentReference, IProgressMonitor monitor) throws CoreException; 32 33 39 public IContentConsumer open(INonPluginEntry nonPluginEntry) throws CoreException; 40 41 47 public IContentConsumer open(IPluginEntry pluginEntry) throws CoreException; 48 49 54 public IFeatureReference close() throws CoreException ; 55 56 57 62 public void abort() throws CoreException; 63 64 } 65 66 67 | Popular Tags |