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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabStop.java32 * left margin, aligns text in a specified way, and has a specified leader.
79 private int leader; field in class:TabStop
83 * and default leader.
91 * alignment <code>align</code> and leader <code>leader</code>.
93 public TabStop(float pos, int align, int leader) { argument
95 this.leader = leader;
116 * Returns the leader of the tab.
117 * @return the leader o
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DDelayQueue.java79 * the leader, it waits only for the next delay to elapse, but
80 * other threads await indefinitely. The leader thread must
82 * poll(...), unless some other thread becomes leader in the
84 * an element with an earlier expiration time, the leader
86 * waiting thread, but not necessarily the current leader, is
90 private Thread leader = null; field in class:DelayQueue
95 * become leader.
140 leader = null;
214 else if (leader != null)
218 leader
[all...]
H A DScheduledThreadPoolExecutor.java844 * the leader, it waits only for the next delay to elapse, but
845 * other threads await indefinitely. The leader thread must
847 * poll(...), unless some other thread becomes leader in the
849 * task with an earlier expiration time, the leader field is
851 * thread, but not necessarily the current leader, is
855 private Thread leader = null; field in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
859 * head of the queue or a new thread may need to become leader.
1021 leader = null;
1084 else if (leader != null)
1088 leader
[all...]

Completed in 51 milliseconds