1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.core.IIdentifiable; 15 20 public interface IPluginReference extends IIdentifiable, IMatchRules { 21 25 String P_MATCH = "match"; 30 String P_VERSION = "version"; 37 int getMatch(); 38 43 String getVersion(); 44 51 void setMatch(int match) throws CoreException; 52 59 void setVersion(String version) throws CoreException; 60 } 61 | Popular Tags |