Lines Matching defs:target

105     /*package*/ Handler target;
140 * message (including its target) into the new one.
155 m.target = orig.target;
162 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
163 * @param h Handler to assign to the returned Message object's <em>target</em> member.
168 m.target = h;
176 * @param h Handler to assign to the returned Message object's <em>target</em> member.
182 m.target = h;
189 * Same as {@link #obtain()}, but sets the values for both <em>target</em> and
191 * @param h Value to assign to the <em>target</em> member.
197 m.target = h;
204 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>, and <em>obj</em>
206 * @param h The <em>target</em> value to set.
213 m.target = h;
221 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
224 * @param h The <em>target</em> value to set.
232 m.target = h;
241 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
244 * @param h The <em>target</em> value to set.
254 m.target = h;
304 target = null;
320 * target/callback of the original message.
345 public void setTarget(Handler target) {
346 this.target = target;
358 return target;
364 * the <em>target</em> {@link Handler} that is receiving this Message to
418 target.sendMessage(this);
490 if (target != null) {
514 b.append(" target=");
515 b.append(target.getClass().getName());
529 if (target != null) {
548 proto.write(MessageProto.TARGET, target.getClass().getName());