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 / StatusUtil.java
index f6f91d9..f87adf0 100644 (file)
@@ -13,9 +13,10 @@ import org.eclipse.jface.dialogs.DialogPage;
 public class StatusUtil {
 
        /**
-        * Compares two instances of <code>IStatus</code>. The more severe is returned:
-        * An error is more severe than a warning, and a warning is more severe
-        * than ok. If the two stati have the same severity, the second is returned.
+        * Compares two instances of <code>IStatus</code>. The more severe is
+        * returned: An error is more severe than a warning, and a warning is more
+        * severe than ok. If the two stati have the same severity, the second is
+        * returned.
         */
        public static IStatus getMoreSevere(IStatus s1, IStatus s2) {
                if (s1.getSeverity() > s2.getSeverity()) {
@@ -26,49 +27,48 @@ public class StatusUtil {
        }
 
        /**
-        * Finds the most severe status from a array of stati.
-        * An error is more severe than a warning, and a warning is more severe
-        * than ok.
+        * Finds the most severe status from a array of stati. An error is more
+        * severe than a warning, and a warning is more severe than ok.
         */
        public static IStatus getMostSevere(IStatus[] status) {
-               IStatus max= null;
-               for (int i= 0; i < status.length; i++) {
-                       IStatus curr= status[i];
+               IStatus max = null;
+               for (int i = 0; i < status.length; i++) {
+                       IStatus curr = status[i];
                        if (curr.matches(IStatus.ERROR)) {
                                return curr;
                        }
                        if (max == null || curr.getSeverity() > max.getSeverity()) {
-                               max= curr;
+                               max = curr;
                        }
                }
                return max;
        }
-               
+
        /**
         * Applies the status to the status line of a dialog page.
         */
        public static void applyToStatusLine(DialogPage page, IStatus status) {
-               String message= status.getMessage();
+               String message = status.getMessage();
                switch (status.getSeverity()) {
-                       case IStatus.OK:
-                               page.setMessage(message, DialogPage.NONE);
-                               page.setErrorMessage(null);
-                               break;
-                       case IStatus.WARNING:
-                               page.setMessage(message, DialogPage.WARNING);
-                               page.setErrorMessage(null);
-                               break;                          
-                       case IStatus.INFO:
-                               page.setMessage(message, DialogPage.INFORMATION);
-                               page.setErrorMessage(null);
-                               break;                  
-                       default:
-                               if (message.length() == 0) {
-                                       message= null;
-                               }
-                               page.setMessage(null);
-                               page.setErrorMessage(message);
-                               break;          
+               case IStatus.OK:
+                       page.setMessage(message, DialogPage.NONE);
+                       page.setErrorMessage(null);
+                       break;
+               case IStatus.WARNING:
+                       page.setMessage(message, DialogPage.WARNING);
+                       page.setErrorMessage(null);
+                       break;
+               case IStatus.INFO:
+                       page.setMessage(message, DialogPage.INFORMATION);
+                       page.setErrorMessage(null);
+                       break;
+               default:
+                       if (message.length() == 0) {
+                               message = null;
+                       }
+                       page.setMessage(null);
+                       page.setErrorMessage(message);
+                       break;
                }
        }
 }