1 11 package org.eclipse.pde.core.plugin; 12 13 19 public interface IMatchRules { 20 23 int NONE = 0; 24 25 28 int EQUIVALENT = 1; 29 30 33 String RULE_EQUIVALENT = "equivalent"; 37 int COMPATIBLE = 2; 38 41 String RULE_COMPATIBLE = "compatible"; 45 int PERFECT = 3; 46 47 50 String RULE_PERFECT = "perfect"; 55 int GREATER_OR_EQUAL = 4; 56 59 String RULE_GREATER_OR_EQUAL = "greaterOrEqual"; 64 int PREFIX = 5; 65 68 String RULE_PREFIX = "prefix"; 74 String [] RULE_NAME_TABLE = 75 { "", RULE_EQUIVALENT, RULE_COMPATIBLE, RULE_PERFECT, RULE_GREATER_OR_EQUAL }; } 77 | Popular Tags |