src/org/objectweb/cjdbc/console/gui/popups/ControllerListPopUpMenu.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.console.gui.popups; 00026 00027 import java.awt.event.ActionEvent; 00028 00029 import javax.swing.JMenuItem; 00030 00031 import org.objectweb.cjdbc.console.gui.CjdbcGui; 00032 import org.objectweb.cjdbc.console.gui.constants.GuiCommands; 00033 00040 public class ControllerListPopUpMenu extends AbstractPopUpMenu 00041 { 00047 public ControllerListPopUpMenu(CjdbcGui gui) 00048 { 00049 super(gui); 00050 this.gui = gui; 00051 this.add(new JMenuItem(GuiCommands.COMMAND_ADD_CONTROLLER)) 00052 .addActionListener(this); 00053 this.add(new JMenuItem(GuiCommands.COMMAND_REFRESH_CONTROLLER_LIST)) 00054 .addActionListener(this); 00055 } 00056 00057 00058 00062 public void actionPerformed(ActionEvent e) 00063 { 00064 String action = e.getActionCommand(); 00065 if (action.equals(GuiCommands.COMMAND_ADD_CONTROLLER)) 00066 { 00067 gui.publicActionAddControllerView(); 00068 } 00069 else if (action.equals(GuiCommands.COMMAND_REFRESH_CONTROLLER_LIST)) 00070 { 00071 gui.publicActionLoadControllerList(); 00072 } 00073 } 00074 }

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