Package org.tomighty.bus.messages.ui

Examples of org.tomighty.bus.messages.ui.ChangeUiState


    this.stateClass = stateClass;
  }
 
  @Override
  public void actionPerformed(ActionEvent e) {
    bus.publish(new ChangeUiState(stateClass));
  }
View Full Code Here


    }
   
    @Override
    public void actionPerformed(ActionEvent e) {
      timer.interrupt();
      bus.publish(new ChangeUiState(interruptedState()));
    }
View Full Code Here

 
  private class EndTimer implements Subscriber<TimerFinished> {
    @Override
    public void receive(TimerFinished end) {
      soundPlayer.play(sounds.ding());
      bus.publish(new ChangeUiState(finishedState()));
    }
View Full Code Here

TOP

Related Classes of org.tomighty.bus.messages.ui.ChangeUiState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.