X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/dialogs/ElementListSelectionDialog.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/dialogs/ElementListSelectionDialog.java index 2863cfb..cee2d5c 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/dialogs/ElementListSelectionDialog.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/dialogs/ElementListSelectionDialog.java @@ -12,14 +12,14 @@ import org.eclipse.swt.widgets.Shell; * A class to select elements out of a list of elements. */ public class ElementListSelectionDialog extends AbstractElementListSelectionDialog { - + private Object[] fElements; - + /** * Creates a list selection dialog. * @param parent the parent widget. * @param renderer the label renderer. - */ + */ public ElementListSelectionDialog(Shell parent, ILabelProvider renderer) { super(parent, renderer); } @@ -38,23 +38,23 @@ public class ElementListSelectionDialog extends AbstractElementListSelectionDial protected void computeResult() { setResult(Arrays.asList(getSelectedElements())); } - + /* * @see Dialog#createDialogArea(Composite) */ protected Control createDialogArea(Composite parent) { Composite contents= (Composite) super.createDialogArea(parent); - + createMessageArea(contents); createFilterText(contents); createFilteredList(contents); setListElements(fElements); - List initialSelections= getInitialSelections(); + List initialSelections= getInitialElementSelections(); if (initialSelections != null) setSelection(initialSelections.toArray()); - + return contents; }