summaryrefslogtreecommitdiff
path: root/src/us/minak/OnCharacterEnteredListener.java
blob: 31b76e90eab5c6bc103c0f7a092b72fe6d3945d5 (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 entering a character.
 */
public interface OnCharacterEnteredListener {
	/**
	 * Invoked when a character is entered.
	 *
	 * @param character
	 *            The entered character
	 */
	void characterEntered(String character);
}