Examples of PanRequestMessage


Examples of org.aavso.tools.vstar.ui.mediator.message.PanRequestMessage

   * Returns the action listener to be invoked for View->Pan Left...
   */
  public ActionListener createPanLeftListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        PanRequestMessage msg = new PanRequestMessage(this,
            PanType.LEFT);
        mediator.getPanRequestNotifier().notifyListeners(msg);
      }
    };
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.message.PanRequestMessage

   * Returns the action listener to be invoked for View->Pan Right...
   */
  public ActionListener createPanRightListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        PanRequestMessage msg = new PanRequestMessage(this,
            PanType.RIGHT);
        mediator.getPanRequestNotifier().notifyListeners(msg);
      }
    };
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.message.PanRequestMessage

   * Returns the action listener to be invoked for View->Pan Up...
   */
  public ActionListener createPanUpListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        PanRequestMessage msg = new PanRequestMessage(this, PanType.UP);
        mediator.getPanRequestNotifier().notifyListeners(msg);
      }
    };
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.message.PanRequestMessage

   * Returns the action listener to be invoked for View->Pan Down...
   */
  public ActionListener createPanDownListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        PanRequestMessage msg = new PanRequestMessage(this,
            PanType.DOWN);
        mediator.getPanRequestNotifier().notifyListeners(msg);
      }
    };
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.