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 / StatusUtil.java
1 /*
2  * (c) Copyright IBM Corp. 2000, 2001.
3  * All Rights Reserved.
4  */
5 package net.sourceforge.phpdt.internal.ui.dialogs;
6
7 import org.eclipse.core.runtime.IStatus;
8 import org.eclipse.jface.dialogs.DialogPage;
9
10 /**
11  * A utility class to work with IStatus.
12  */
13 public class StatusUtil {
14
15         /**
16          * Compares two instances of <code>IStatus</code>. The more severe is
17          * returned: An error is more severe than a warning, and a warning is more
18          * severe than ok. If the two stati have the same severity, the second is
19          * returned.
20          */
21         public static IStatus getMoreSevere(IStatus s1, IStatus s2) {
22                 if (s1.getSeverity() > s2.getSeverity()) {
23                         return s1;
24                 } else {
25                         return s2;
26                 }
27         }
28
29         /**
30          * Finds the most severe status from a array of stati. An error is more
31          * severe than a warning, and a warning is more severe than ok.
32          */
33         public static IStatus getMostSevere(IStatus[] status) {
34                 IStatus max = null;
35                 for (int i = 0; i < status.length; i++) {
36                         IStatus curr = status[i];
37                         if (curr.matches(IStatus.ERROR)) {
38                                 return curr;
39                         }
40                         if (max == null || curr.getSeverity() > max.getSeverity()) {
41                                 max = curr;
42                         }
43                 }
44                 return max;
45         }
46
47         /**
48          * Applies the status to the status line of a dialog page.
49          */
50         public static void applyToStatusLine(DialogPage page, IStatus status) {
51                 String message = status.getMessage();
52                 switch (status.getSeverity()) {
53                 case IStatus.OK:
54                         page.setMessage(message, DialogPage.NONE);
55                         page.setErrorMessage(null);
56                         break;
57                 case IStatus.WARNING:
58                         page.setMessage(message, DialogPage.WARNING);
59                         page.setErrorMessage(null);
60                         break;
61                 case IStatus.INFO:
62                         page.setMessage(message, DialogPage.INFORMATION);
63                         page.setErrorMessage(null);
64                         break;
65                 default:
66                         if (message.length() == 0) {
67                                 message = null;
68                         }
69                         page.setMessage(null);
70                         page.setErrorMessage(message);
71                         break;
72                 }
73         }
74 }