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