View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/06/09 0:20:26
6    */
7   package org.asyrinx.joey.gui.swing.listview;
8   
9   import javax.swing.Action;
10  import javax.swing.KeyStroke;
11  
12  import org.asyrinx.joey.gui.swing.EntityListViewTable;
13  
14  /***
15   * @author akima
16   */
17  public interface EntityListViewTableAction extends Action {
18  	public abstract boolean isOnPopupMenu();
19  	public KeyStroke getAccelerator();
20  	public String getName();
21  	/***
22  	 * @param table
23  	 * @return
24  	 */
25  	public boolean isEnabled(EntityListViewTable table);
26  }