Subversion Repositories eFlore/Applications.del

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 benjamin 1
package org.tela_botanica.del.client.utils;
2
 
3
import com.google.gwt.user.client.ui.KeyboardListener;
4
import com.google.gwt.user.client.ui.Widget;
5
 
6
@SuppressWarnings("deprecation")
7
public abstract class KeyboardKeyListener implements KeyboardListener {
8
 
9
	public void onKeyDown(Widget arg0, char arg1, int arg2) {
10
		// TODO Auto-generated method stub
11
 
12
	}
13
 
14
	public void onKeyPress(Widget arg0, char arg1, int arg2) {
15
		// TODO Auto-generated method stub
16
 
17
	}
18
 
19
	public void onKeyUp(Widget arg0, char arg1, int arg2) {
20
		if (arg1 == KeyboardListener.KEY_ENTER) {
21
			onEnterKeyUp();
22
		}
23
 
24
	}
25
 
26
	public abstract void onEnterKeyUp();
27
 
28
}