|
| |
"SWT - A Native Widget Toolkit for Java Part 1 of 2"
Vol. 8, Issue 4, p. 46
Listing 1
Button b = new Button(shell,SWT.PUSH);
b.addSelectionListener(
new SelectionAdapter(){
public void widgetSelected(
SelectionEvent e){
// button was selected
}
});
b.addFocusListener(
new FocusAdapter(){
public void focusGained(
FocusEvent e){
// button got focus
}
});
Listing 2
Button b = new Button(shell,SWT.PUSH);
Listener listener = new Listener() {
public void handleEvent(Event event) {
switch (event.type) {
case SWT.Selection:
// button was selected
break;
case SWT.FocusIn:
// button got focus
break;
}
}
};
b.addListener(SWT.Selection,listener);
b.addListener(SWT.FocusIn,listener);
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|