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

org.objectweb.cjdbc.console.gui.popups.LogEditPopUpMenu Class Reference

Inheritance diagram for org.objectweb.cjdbc.console.gui.popups.LogEditPopUpMenu:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.console.gui.popups.LogEditPopUpMenu:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 LogEditPopUpMenu (CjdbcGui gui, String controllerName, JTextPane logConfigTextPane)
void actionPerformed (ActionEvent e)

Detailed Description

This class defines a LogEditPopUpMenu

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 41 of file LogEditPopUpMenu.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.console.gui.popups.LogEditPopUpMenu.LogEditPopUpMenu CjdbcGui  gui,
String  controllerName,
JTextPane  logConfigTextPane
 

Creates a new LogEditPopUpMenu object

Parameters:
gui link to the main gui
logConfigTextPane the reference to the edit panel
controllerName the name of the controller that sent those logs

Definition at line 53 of file LogEditPopUpMenu.java.

00055   {
00056     super(gui);
00057     this.logConfigTextPane = logConfigTextPane;
00058     this.controllerName = controllerName;
00059 
00060     this.add(
00061         new JMenuItem(GuiCommands.COMMAND_CONTROLLER_UPDATE_LOG_CONFIGURATION))
00062         .addActionListener(this);
00063     this.add(
00064         new JMenuItem(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_DEBUG))
00065         .addActionListener(this);
00066     this.add(
00067         new JMenuItem(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_INFO))
00068         .addActionListener(this);
00069     this.add(
00070         new JMenuItem(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_ADD_SERVER))
00071         .addActionListener(this);
00072     this.add(
00073         new JMenuItem(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_REMOVE_SERVER))
00074         .addActionListener(this);
00075     
00076   }


Member Function Documentation

void org.objectweb.cjdbc.console.gui.popups.LogEditPopUpMenu.actionPerformed ActionEvent  e  )  [virtual]
 

See also:
java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)

Implements org.objectweb.cjdbc.console.gui.popups.AbstractPopUpMenu.

Definition at line 81 of file LogEditPopUpMenu.java.

References org.objectweb.cjdbc.console.gui.CjdbcGui.publicActionSetLogConfigurationDebug(), org.objectweb.cjdbc.console.gui.CjdbcGui.publicActionSetLogConfigurationInfo(), org.objectweb.cjdbc.console.gui.CjdbcGui.publicActionSetLogConfigurationServer(), and org.objectweb.cjdbc.console.gui.CjdbcGui.publicActionUpdateControllerLogConfiguration().

00082   {
00083     String action = e.getActionCommand();
00084     if (action.equals(GuiCommands.COMMAND_CONTROLLER_UPDATE_LOG_CONFIGURATION))
00085       gui.publicActionUpdateControllerLogConfiguration(controllerName,
00086           logConfigTextPane.getText());
00087     else if (action.equals(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_DEBUG))
00088       gui.publicActionSetLogConfigurationDebug(controllerName,
00089           logConfigTextPane.getText());
00090     else if (action.equals(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_INFO))
00091       gui.publicActionSetLogConfigurationInfo(controllerName,
00092           logConfigTextPane.getText());
00093     else if (action.equals(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_ADD_SERVER))
00094       gui.publicActionSetLogConfigurationServer(true,controllerName,
00095           logConfigTextPane.getText());
00096     else if (action.equals(GuiCommands.COMMAND_CONTROLLER_LOG_CONFIGURATION_REMOVE_SERVER))
00097       gui.publicActionSetLogConfigurationServer(false,controllerName,
00098           logConfigTextPane.getText());
00099   }


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