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

説明を見る。
00001 00025 package org.objectweb.cjdbc.console.text.commands.controller; 00026 00027 import java.util.ArrayList; 00028 00029 import org.objectweb.cjdbc.common.i18n.ConsoleTranslate; 00030 import org.objectweb.cjdbc.console.text.ConsoleException; 00031 import org.objectweb.cjdbc.console.text.commands.ConsoleCommand; 00032 import org.objectweb.cjdbc.console.text.module.AbstractConsoleModule; 00033 00040 public class ListDatabases extends ConsoleCommand 00041 { 00042 00048 public ListDatabases(AbstractConsoleModule module) 00049 { 00050 super(module); 00051 } 00052 00056 public void parse(String commandText) throws Exception 00057 { 00058 try 00059 { 00060 ArrayList list = jmxClient.getControllerProxy().listVirtualDatabases(); 00061 for (int i = 0; i < list.size(); i++) 00062 console.println((String) list.get(i)); 00063 } 00064 catch (Exception e) 00065 { 00066 throw new ConsoleException(ConsoleTranslate.get( 00067 "controller.command.listDatabases.failed", e)); 00068 } 00069 } 00070 00074 public String getCommandName() 00075 { 00076 return "listDatabases"; 00077 } 00078 00082 public String getCommandDescription() 00083 { 00084 return ConsoleTranslate.get("controller.command.listDatabases"); 00085 } 00086 00087 }

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