Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.console.text.commands.controller.GetXml Class Reference

Inheritance diagram for org.objectweb.cjdbc.console.text.commands.controller.GetXml:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.console.text.commands.controller.GetXml:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 GetXml (AbstractConsoleModule module)
void parse (String commandText) throws Exception
String getCommandName ()
String getCommandDescription ()

Detailed Description

This class defines a GetXml

Author:
Nicolas Modrzyk

Emmanuel Cecchet

Version:
1.0

Definition at line 40 of file GetXml.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.console.text.commands.controller.GetXml.GetXml AbstractConsoleModule  module  ) 
 

Creates a new GetXml.java object

Parameters:
module the command is attached to

Definition at line 48 of file GetXml.java.

00049   {
00050     super(module);
00051   }


Member Function Documentation

String org.objectweb.cjdbc.console.text.commands.controller.GetXml.getCommandDescription  )  [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.getCommandDescription()

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 81 of file GetXml.java.

00082   {
00083     return ConsoleTranslate.get("controller.command.getXml");
00084   }

String org.objectweb.cjdbc.console.text.commands.controller.GetXml.getCommandName  )  [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.getCommandName()

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 73 of file GetXml.java.

00074   {
00075     return "getXml";
00076   }

void org.objectweb.cjdbc.console.text.commands.controller.GetXml.parse String  commandText  )  throws Exception [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.parse(java.lang.String)

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 56 of file GetXml.java.

References org.objectweb.cjdbc.console.jmx.RmiJmxClient.getControllerProxy(), and org.objectweb.cjdbc.console.text.Console.println().

00057   {
00058     try
00059     {
00060       console.println(jmxClient.getControllerProxy().getXml());
00061     }
00062     catch (Exception e)
00063     {
00064       throw new ConsoleException(ConsoleTranslate
00065           .get("controller.command.getXml.error"));
00066     }
00067 
00068   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:02:47 2005 for C-JDBC by  doxygen 1.3.9.1