1 11 package org.eclipse.update.core; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 34 public interface IContentConsumer { 35 36 46 public void store(ContentReference contentReference, IProgressMonitor monitor) 47 throws CoreException; 48 49 56 public void close() throws CoreException; 57 58 } 59 | Popular Tags |