Code Search for Developers
 
 
  

ICIKeyboardProvider.java from MASE: Agile Software Engineering at Krugle


Show ICIKeyboardProvider.java syntax highlighted

/**
 * 
 */
package ucalgary.ebe.ci.keyboard;

import ucalgary.ebe.ci.keyboard.events.ICIKeyboardListener;

/**
 * @author hkolenda
 * 
 */
public interface ICIKeyboardProvider {

    /**
     * adds the given listener to be notified when key event happened
     * 
     * @param listener
     *            listener to add
     */
    public void addICIKeyboardListener(ICIKeyboardListener listener);

    /**
     * removes the given listener from the list of listeners to be notified when
     * key events happened
     * 
     * @param listener
     *            listener to be removed
     */
    public void removeICIKeyboardListener(ICIKeyboardListener listener);

}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  events/
    ICIKeyboardEvent.java
    ICIKeyboardListener.java
  ICIKeyboardProvider.java