List: setItems(String[] values) : List « org.eclipse.swt.widgets « Java by API






List: setItems(String[] values)


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;

public class MainClass {

  public static void main(String[] a) {
    Display d = new Display();
    Shell s = new Shell(d);

    s.setSize(250, 250);
    s.setText("A Combo Example");

    s.setText("A List Example");
    String items[] = { "Item One", "Item Two", "Item Three", "Item Four", "Item Five" };
    final List l = new List(s, SWT.SINGLE | SWT.BORDER);
    l.setBounds(50, 50, 75, 75);
    l.setItems(items);

    s.open();
    while (!s.isDisposed()) {
      if (!d.readAndDispatch())
        d.sleep();
    }
    d.dispose();
  }
}

           
       








Related examples in the same category

1.new List(Shell s, SWT.MULTI | SWT.BORDER)
2.new List(Shell s, SWT.SINGLE | SWT.BORDER)
3.List: add(String value)
4.List: addSelectionListener(SelectionListener lis)
5.List: getSelection()
6.List: getVerticalBar()
7.List: removeAll()
8.List: select(int index)
9.List: showSelection()