1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.core.plugin.IPluginReference; 15 16 public interface IFeatureImport extends IFeatureObject, IPluginReference { 17 String P_TYPE = "type"; 19 String P_PATCH = "patch"; 21 String P_ID_MATCH = "id-match"; 23 int PLUGIN = 0; 24 25 int FEATURE = 1; 26 27 int getType(); 28 29 void setType(int type) throws CoreException; 30 31 boolean isPatch(); 32 33 void setPatch(boolean patch) throws CoreException; 34 35 int getIdMatch(); 36 37 void setIdMatch(int idMatch) throws CoreException; 38 } 39 | Popular Tags |