summaryrefslogtreecommitdiff
path: root/src/us/minak/OnBackspacePressedListener.java
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-05-07 12:36:36 -0400
committerDavisLWebb <davislwebb@ymail.com>2014-05-07 12:36:36 -0400
commitfac4b2b460ba84cc38fb75ecbf09755528050bc7 (patch)
tree298c3400f22f4ca9b84beb0a3df7f55bbabc9003 /src/us/minak/OnBackspacePressedListener.java
parent9ca3fa2d19c48dafb5f25f92bcd5ba87d03031b0 (diff)
parent58aa0ea407aedde32cbde69b2dbb6cf4ae9e31a5 (diff)
Merge branch 'master' of https://github.com/AndrewMurrell/minak
Diffstat (limited to 'src/us/minak/OnBackspacePressedListener.java')
-rw-r--r--src/us/minak/OnBackspacePressedListener.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/us/minak/OnBackspacePressedListener.java b/src/us/minak/OnBackspacePressedListener.java
deleted file mode 100644
index b4cf974..0000000
--- a/src/us/minak/OnBackspacePressedListener.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- ********************************************************************************
- * 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);
-}