Advertisement
Guest User

Extended command

a guest
Jul 21st, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. /**
  2.  * This command can be used to display a Model that will be automatically removed after a given delay.
  3.  * This command should be used with a DisplayTemporaryModelWaveBean.
  4.  */
  5. public class ShowTemporaryModelCommand extends ShowModelCommand {
  6.  
  7.     @Override
  8.     protected void addSubCommand() {
  9.         super.addSubCommand();
  10.         addCommandClass(DetachLaterModelCommand.class);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement