summaryrefslogtreecommitdiff
path: root/src/us/minak/OnGestureRecognizedListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/us/minak/OnGestureRecognizedListener.java')
-rw-r--r--src/us/minak/OnGestureRecognizedListener.java23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/us/minak/OnGestureRecognizedListener.java b/src/us/minak/OnGestureRecognizedListener.java
index 5c3638f..a30e8b8 100644
--- a/src/us/minak/OnGestureRecognizedListener.java
+++ b/src/us/minak/OnGestureRecognizedListener.java
@@ -1,5 +1,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 recognizing a gesture.
+ */
public interface OnGestureRecognizedListener {
+ /**
+ * Invoked when a gesture is recognized.
+ *
+ * @param character
+ * The character represented by the gesture.
+ */
void gestureRecognized(String character);
-} \ No newline at end of file
+}