A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / wizards / dialogfields / IListAdapter.java
index 79db768..825a78c 100644 (file)
 package net.sourceforge.phpdt.internal.ui.wizards.dialogfields;
 
 /**
- * Change listener used by <code>ListDialogField</code> and <code>CheckedListDialogField</code>
+ * Change listener used by <code>ListDialogField</code> and
+ * <code>CheckedListDialogField</code>
  */
 public interface IListAdapter {
-       
+
        /**
         * A button from the button bar has been pressed.
         */
        void customButtonPressed(ListDialogField field, int index);
-       
+
        /**
         * The selection of the list has changed.
-        */     
+        */
        void selectionChanged(ListDialogField field);
-       
+
        /**
         * En entry in the list has been double clicked
         */
-       void doubleClicked(ListDialogField field);      
+       void doubleClicked(ListDialogField field);
 
 }