1 11 package org.eclipse.update.core; 12 13 14 25 public interface IUpdateConstants { 26 27 31 public static final int RULE_NONE = 0; 32 33 38 public static final int RULE_PERFECT = 1; 39 40 46 public static final int RULE_EQUIVALENT = 2; 47 48 54 public static final int RULE_COMPATIBLE = 3; 55 56 61 public static final int RULE_GREATER_OR_EQUAL = 4; 62 63 68 public static final int RULE_PREFIX = 1; 69 70 74 public static final int SEARCH_ROOT = 1<<1; 75 76 80 public static final int SEARCH_SELF = 1<<2; 81 82 83 } 84 | Popular Tags |