| Home >> All >> com >> trapezium >> chisel >> [ gui Javadoc ] |
Source code: com/trapezium/chisel/gui/ActionImpl.java
1 /* 2 * ActionImpl.java 3 * 4 * ActionListener extension with methods common to all ActionListener 5 * implementations 6 */ 7 8 package com.trapezium.chisel.gui; 9 10 import java.awt.event.*; 11 12 public interface ActionImpl extends ActionListener { 13 String getName(); 14 void setName(String name); 15 }