1 package com.bonevich.erj.ui;
2
3 /*** Command to exit the application */
4 class CommandRedo extends Command
5 {
6 public CommandRedo() { super("Redo"); }
7
8 public boolean doIt()
9 {
10 return false;
11 }
12
13 public void undoIt() { }
14
15 public boolean shouldBeEnabled() { return false; }
16 } /*** end class CommandRedo */
This page was automatically generated by Maven