Lines Matching defs:Builder

42  * used in conjunction with methods in the {@link AnimatorSet.Builder Builder}
223 * set and then {@link Builder#with(Animator)} with each of the other animators. Note that
233 Builder builder = play(items[0]);
247 Builder builder = null;
368 * This method creates a <code>Builder</code> object, which is used to
370 * tells the <code>Builder</code> the animation that is the dependency for
371 * the succeeding commands to the <code>Builder</code>. For example,
380 * <code>Builder</code> the animation upon which the dependency is created,
381 * so successive calls to the various functions in <code>Builder</code>
389 * methods in the returned <code>Builder</code> object. A null parameter will result
390 * in a null <code>Builder</code> return value.
391 * @return Builder The object that constructs the AnimatorSet based on the dependencies
393 * <code>Builder</code object.
395 public Builder play(Animator anim) {
397 return new Builder(anim);
1960 * The <code>Builder</code> object is a utility class to facilitate adding animations to a
1962 * intention of the <code>Builder</code> methods, along with the {@link
1969 * <p>The <code>Builder</code> object cannot be constructed directly, but is rather constructed
1981 * <p>Note in the example that both {@link Builder#before(Animator)} and {@link
1982 * Builder#after(Animator)} are used. These are just different ways of expressing the same
1986 * <p>It is possible to make several calls into the same <code>Builder</code> object to express
1989 * calls to the <code>Builder</code> object. For example, the following code starts both anim2
2011 public class Builder {
2015 * of AnimatorSet and passed into the constructor of Builder.
2024 * the other methods of this Builder object.
2026 Builder(Animator anim) {
2033 * {@link AnimatorSet#play(Animator)} call that created this <code>Builder</code> object.
2038 public Builder with(Animator anim) {
2046 * {@link AnimatorSet#play(Animator)} call that created this <code>Builder</code> object
2052 public Builder before(Animator anim) {
2060 * {@link AnimatorSet#play(Animator)} call that created this <code>Builder</code> object
2066 public Builder after(Animator anim) {
2074 * {@link AnimatorSet#play(Animator)} call that created this <code>Builder</code> object
2080 public Builder after(long delay) {