Lines Matching defs:inhibit
71 public static final String INHIBIT = "inhibit";
77 private int inhibit = -1;
81 if (require == -1 && inhibit == -1) {
94 if (inhibit != -1) {
96 tmp.putInteger(inhibit);
106 * require explicit policy and inhibit policy mapping. The
110 * @param inhibit inhibit policy mapping (-1 for optional).
112 public PolicyConstraintsExtension(int require, int inhibit)
114 this(Boolean.FALSE, require, inhibit);
119 * criticality and both require explicit policy and inhibit
124 * @param inhibit inhibit policy mapping (-1 for optional).
126 public PolicyConstraintsExtension(Boolean critical, int require, int inhibit)
129 this.inhibit = inhibit;
166 if (this.inhibit != -1)
170 this.inhibit = next.getInteger();
187 if (inhibit == -1)
190 s += inhibit;
222 inhibit = ((Integer)obj).intValue();
238 return new Integer(inhibit);
252 inhibit = -1;