summaryrefslogtreecommitdiff
path: root/src/us/minak/OnBackspacePressedListener.java
blob: 8e22d1316b30ad9859f4e88a3f1aa01e924355b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package us.minak;

/**
 * A simple interface for handling pressing the backspace button.
 */
public interface OnBackspacePressedListener {
	/**
	 * Invoked when the backspace button is pressed.
	 *
	 * @param isLongClick
	 *            if the button is long pressed
	 */
	void backspacePressed(boolean isLongClick);
}