1 package test2; 2 import java.awt.event.ActionEvent ; 3 import javax.swing.AbstractAction ; 4 public class SomeAction extends AbstractAction { 5 private static final long serialVersionUID = 5678L; 6 public static final long TIME_CLASS_LOADED = System.currentTimeMillis(); 7 public SomeAction() { 8 super("SomeAction"); 9 } 10 public void actionPerformed(ActionEvent e) { 11 } 12 } 13 | Popular Tags |