1 26 package org.objectweb.openccm.explorer.menu; 27 28 import org.objectweb.fractal.api.Component; 29 import org.objectweb.openccm.corba.TheORB; 30 import org.objectweb.openccm.explorer.CORBA.ConsoleFactory; 31 32 33 import javax.swing.ImageIcon ; 34 35 42 public class DisplayAboutDialogAction extends AbstractMenuAction { 43 44 protected java.awt.Frame parent_ = null; 45 46 public DisplayAboutDialogAction(java.awt.Frame parent, String nom, ImageIcon image, String desc, Integer mnemonic, Component tree) { 47 super(nom, image, desc, mnemonic, tree); 48 parent_=parent; 49 } 50 51 public void actionPerformed(java.awt.event.ActionEvent ae) { 52 (new AboutDialog(parent_)).show(); 53 } 54 55 } 56 | Popular Tags |