src/org/objectweb/cjdbc/console/text/commands/controller/GetInfo.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.console.text.commands.controller; 00026 00027 import org.objectweb.cjdbc.common.i18n.ConsoleTranslate; 00028 import org.objectweb.cjdbc.console.text.ConsoleException; 00029 import org.objectweb.cjdbc.console.text.commands.ConsoleCommand; 00030 import org.objectweb.cjdbc.console.text.module.AbstractConsoleModule; 00031 00038 public class GetInfo extends ConsoleCommand 00039 { 00040 00046 public GetInfo(AbstractConsoleModule module) 00047 { 00048 super(module); 00049 } 00050 00054 public void parse(String commandText) throws Exception 00055 { 00056 try 00057 { 00058 console.println(jmxClient.getControllerProxy().viewInfo()); 00059 } 00060 catch (Exception e) 00061 { 00062 throw new ConsoleException(ConsoleTranslate.get( 00063 "controller.command.getInfo.failed", e)); 00064 } 00065 00066 } 00067 00071 public String getCommandName() 00072 { 00073 return "getInfo"; 00074 } 00075 00079 public String getCommandDescription() 00080 { 00081 return ConsoleTranslate.get("controller.command.getInfo"); 00082 } 00083 00084 }

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