Source code: com/arranger/jarl/shell/ICommands.java
1 package com.arranger.jarl.shell;
2
3 import com.arranger.jarl.shell.commands.*;
4
5 /**
6 * ICommands created on Apr 16, 2003
7 */
8 public interface ICommands {
9
10 public static final String[] COMMANDS = {
11 HelpCommand.class.getName(),
12 QuitCommand.class.getName(),
13 RenderFrameCommand.class.getName(),
14 DimensionCommand.class.getName(),
15 ReuseFrameCommand.class.getName(),
16 DebugRenderingCommand.class.getName(),
17 ShowJarlObjTreeCommand.class.getName(),
18 StatusCommand.class.getName(),
19 RenderAnimationCommand.class.getName(),
20 ViewAnimationCommand.class.getName()
21 };
22 }