| Home >> All >> com >> arranger >> jarl >> shell >> [ commands Javadoc ] |
Source code: com/arranger/jarl/shell/commands/QuitCommand.java
1 package com.arranger.jarl.shell.commands; 2 3 /** 4 * QuitCommand created on Apr 16, 2003 5 */ 6 public class QuitCommand extends BaseCommand { 7 8 public String getHelpText() { 9 return "quits the jarl shell"; 10 } 11 12 public String getCommand() { 13 return "quit"; 14 } 15 16 public void invoke(String[] args) throws Exception { 17 m_jarlShell.setShouldQuit(true); 18 } 19 }