1 package org.telscenter.pas.hint.actions; 2 3 import java.awt.event.ActionEvent; 4 5 import javax.swing.AbstractAction; 6 import javax.swing.ImageIcon; 7 import javax.swing.JPanel; 8 9 public class HintAction extends AbstractAction { 10 11 protected JPanel cards; 12 13 public HintAction(String title, ImageIcon icon, JPanel cards) { 14 super(title, icon); 15 this.cards = cards; 16 } 17 18 public void actionPerformed(ActionEvent e) { 19 // TODO Auto-generated method stub 20 21 } 22 23 }