1 11 package org.eclipse.update.core; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IAdaptable; 15 import org.eclipse.core.runtime.IProgressMonitor; 16 import org.eclipse.update.configuration.IConfiguredSite; 17 18 19 20 37 public interface IIncludedFeatureReference extends IFeatureReference, IAdaptable { 38 39 48 public IFeature getFeature() throws CoreException; 49 50 67 public IFeature getFeature(boolean perfectMatch,IConfiguredSite configuredSite) throws CoreException; 68 69 88 public IFeature getFeature(boolean perfectMatch,IConfiguredSite configuredSite, IProgressMonitor monitor) throws CoreException; 89 90 91 97 public boolean isOptional(); 98 99 114 public int getMatch(); 115 116 127 128 public int getSearchLocation(); 129 130 } 131 | Popular Tags |