A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / dialogs / ElementListSelectionDialog.java
index cee2d5c..e8588c5 100644 (file)
@@ -11,25 +11,31 @@ 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.
+        * 
+        * @param parent
+        *            the parent widget.
+        * @param renderer
+        *            the label renderer.
         */
-       public ElementListSelectionDialog(Shell parent, ILabelProvider 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;
+               fElements = elements;
        }
 
        /*
@@ -43,7 +49,7 @@ public class ElementListSelectionDialog extends AbstractElementListSelectionDial
         * @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);
@@ -51,7 +57,7 @@ public class ElementListSelectionDialog extends AbstractElementListSelectionDial
 
                setListElements(fElements);
 
-               List initialSelections= getInitialElementSelections();
+               List initialSelections = getInitialElementSelections();
                if (initialSelections != null)
                        setSelection(initialSelections.toArray());