1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / dialogs / ElementListSelectionDialog.java
index 2863cfb..207fd6f 100644 (file)
@@ -11,26 +11,32 @@ import org.eclipse.swt.widgets.Shell;
 /**
  * A class to select elements out of a list of elements.
  */
-public class ElementListSelectionDialog extends AbstractElementListSelectionDialog {
-       
+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) {
+        * 
+        * @param parent
+        *            the parent widget.
+        * @param renderer
+        *            the label renderer.
+        */
+       public ElementListSelectionDialog(Shell parent, ILabelProvider renderer) {
                super(parent, renderer);
        }
 
        /**
         * Sets the elements of the list.
-        * @param elements the elements of the list.
+        * 
+        * @param elements
+        *            the elements of the list.
         */
-       public void setElements(Object[] elements) {
-               fElements= elements;
-       }
+//     public void setElements(Object[] elements) {
+//             fElements = elements;
+//     }
 
        /*
         * @see SelectionStatusDialog#computeResult()
@@ -38,23 +44,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);
-               
+               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;
        }