1 11 package org.eclipse.update.core; 12 13 import java.net.URL ; 14 15 import org.eclipse.core.runtime.CoreException; 16 import org.eclipse.core.runtime.IProgressMonitor; 17 18 36 public interface IFeatureFactory { 37 38 54 public IFeature createFeature(URL url, ISite site) throws CoreException; 55 56 71 public IFeature createFeature(URL url, ISite site, IProgressMonitor monitor) throws CoreException; 72 } 73 | Popular Tags |