src/org/objectweb/cjdbc/console/text/commands/Quit.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.console.text.commands; 00026 00027 import java.io.IOException; 00028 00029 import org.objectweb.cjdbc.common.i18n.ConsoleTranslate; 00030 import org.objectweb.cjdbc.console.text.ConsoleException; 00031 import org.objectweb.cjdbc.console.text.module.AbstractConsoleModule; 00032 00039 public class Quit extends ConsoleCommand 00040 { 00041 00047 public Quit(AbstractConsoleModule module) 00048 { 00049 super(module); 00050 } 00051 00055 public void parse(String commandText) throws IOException, ConsoleException 00056 { 00057 module.quit(); 00058 } 00059 00063 public String getCommandName() 00064 { 00065 return "quit"; 00066 } 00067 00071 public String getCommandDescription() 00072 { 00073 return ConsoleTranslate.get("console.command.quit"); 00074 } 00075 00079 public void execute(String commandText) throws Exception 00080 { 00081 this.parse(commandText); 00082 } 00083 00084 }

CJDBCversion1.0.4に対してTue Oct 12 15:15:59 2004に生成されました。 doxygen 1.3.8