FileDocCategorySizeDatePackage
Ch07_04.javaAPI DocExample1818Tue Nov 18 15:10:18 GMT 2003org.eclipsebook.ch07

Ch07_04

public class Ch07_04 extends Object
author
Steven Holzner To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

		Display display = new Display ();
		Shell shell = new Shell (display);
		shell.setText("List Example");
		shell.setSize(300, 200);
		shell.setLayout(new FillLayout(SWT.VERTICAL));
		final List list = new List (shell, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL);
		
		for (int loopIndex = 0; loopIndex < 100; loopIndex++){ 
		    list.add("Item " + loopIndex);
		}
		
		list.addSelectionListener(new SelectionListener()
		{

		   public void widgetSelected(SelectionEvent event)
		   {
				int [] selections = list.getSelectionIndices ();
				String outText = "";
				for (int loopIndex = 0; loopIndex < selections.length; loopIndex++) outText += selections[loopIndex] + " ";
				System.out.println ("You selected: " + outText);
		   }

		   public void widgetDefaultSelected(SelectionEvent event)
		   {
			int [] selections = list.getSelectionIndices ();
			String outText = "";
			for (int loopIndex = 0; loopIndex < selections.length; loopIndex++) outText += selections[loopIndex] + " ";
			System.out.println ("You selected: " + outText);
		   }
		});

		shell.open ();
		while (!shell.isDisposed ()) {
			if (!display.readAndDispatch ()) display.sleep ();
		}
		display.dispose ();