Searched defs:pri (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java238 * If the <code>pri</code> argument is less than
244 * smaller of the specified <code>pri</code> and the maximum permitted
247 * priority is simply set to <code>pri</code>.) Then this method is
248 * called recursively, with <code>pri</code> as its argument, for
251 * @param pri the new priority of the thread group.
259 public final void setMaxPriority(int pri) { argument
264 if (pri < Thread.MIN_PRIORITY || pri > Thread.MAX_PRIORITY) {
267 maxPriority = (parent != null) ? Math.min(pri, parent.maxPriority) : pri;
[all...]

Completed in 31 milliseconds