summaryrefslogtreecommitdiff
path: root/src/us/minak/OnBackspacePressedListener.java
blob: b4cf97475d77ea0a18ad007b1880a663c9003d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 ********************************************************************************
 * Copyright (c) 2012 Samsung Electronics, Inc.
 * All rights reserved.
 *
 * This software is a confidential and proprietary information of Samsung
 * Electronics, Inc. ("Confidential Information"). You shall not disclose such
 * Confidential Information and shall use it only in accordance with the terms
 * of the license agreement you entered into with Samsung Electronics.
 ********************************************************************************
 */

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);
}