1 26 package org.objectweb.openccm.explorer.menu; 27 28 29 import javax.swing.ImageIcon ; 30 31 import org.objectweb.fractal.api.Component; 32 33 40 public class RefreshAction extends AbstractMenuAction { 41 42 public RefreshAction(String nom, ImageIcon image, String desc, Integer mnemonic, Component tree) { 43 super(nom, image, desc, mnemonic, tree); 44 } 45 46 public void actionPerformed(java.awt.event.ActionEvent ae) { 47 treeItf_.refreshAll(); 48 } 49 50 } 51 | Popular Tags |