To track the user's selection (DefaultSelection) : Combo Event « SWT « Java Tutorial

Home
Java Tutorial
1.Language
2.Data Type
3.Operators
4.Statement Control
5.Class Definition
6.Development
7.Reflection
8.Regular Expressions
9.Collections
10.Thread
11.File
12.Generics
13.I18N
14.Swing
15.Swing Event
16.2D Graphics
17.SWT
18.SWT 2D Graphics
19.Network
20.Database
21.Hibernate
22.JPA
23.JSP
24.JSTL
25.Servlet
26.Web Services SOA
27.EJB3
28.Spring
29.PDF
30.Email
31.J2ME
32.J2EE Application
33.XML
34.Design Pattern
35.Log
36.Security
37.Apache Common
38.Ant
39.JUnit
Java Tutorial » SWT » Combo Event 
17.12.3.To track the user's selection (DefaultSelection)Previous/Next
To track the user's selection (DefaultSelection)
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class ComboSelectionEvent {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());

    String[] ITEMS = "A""B""C""D" };

    final Combo combo = new Combo(shell, SWT.DROP_DOWN);
    combo.setItems(ITEMS);

    combo.addSelectionListener(new SelectionListener() {
      public void widgetSelected(SelectionEvent e) {
        System.out.println("Selected index: " + combo.getSelectionIndex() ", selected item: "
            + combo.getItem(combo.getSelectionIndex()) ", text content in the text field: "
            + combo.getText());
      }

      public void widgetDefaultSelected(SelectionEvent e) {
        System.out.println("Default selected index: "
            + combo.getSelectionIndex()
            ", selected item: "
            (combo.getSelectionIndex() == -"<null>" : combo
                .getItem(combo.getSelectionIndex())) ", text content in the text field: "
            + combo.getText());
      }
    });

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}
  1. The widgetSelected method of the selection listener is called when the combo's list selection changes.
  2. The widgetDefaultSelected method is typically called when the user presses the Enter key in the combo's text field.
17.12.Combo Event
17.12.1.Add selection listener to ComboAdd selection listener to Combo
17.12.2.Combo default selection event (Return/Enter key)Combo default selection event (Return/Enter key)
17.12.3.To track the user's selection (DefaultSelection)To track the user's selection (DefaultSelection)
17.12.4.Add TraverseListener to ComboAdd TraverseListener to Combo
17.12.5.Disable Tab key to transfer focus for ComboDisable Tab key to transfer focus for Combo
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.