* 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);
}
};
}