Exemplo n.º 1
0
 public Builder then(FadedHandler handler) {
   fader.handler = handler;
   return this;
 }
Exemplo n.º 2
0
 public Builder every(int millis) {
   fader.period = millis;
   return this;
 }
Exemplo n.º 3
0
 public Builder by(double step) {
   fader.step = step;
   return this;
 }
Exemplo n.º 4
0
 public Builder to(double to) {
   fader.to = Math.max(to, 0);
   return this;
 }
Exemplo n.º 5
0
 public Builder from(double from) {
   fader.from = Math.min(from, 1);
   return this;
 }
Exemplo n.º 6
0
 public FadeAnimation start() {
   fader.start();
   return fader;
 }