1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 18 public interface IFragment extends IPluginBase { 19 23 String P_PLUGIN_ID = "plugin-id"; 28 String P_PLUGIN_VERSION = "plugin-version"; 33 String P_RULE = "match"; 39 String getPluginId(); 40 45 String getPluginVersion(); 46 52 int getRule(); 53 58 void setPluginId(String id) throws CoreException; 59 64 void setPluginVersion(String version) throws CoreException; 65 72 void setRule(int rule) throws CoreException; 73 } 74 | Popular Tags |