A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / watch / PHPWatchExpressionDelegate.java
index e37deff..1f38d53 100644 (file)
@@ -11,40 +11,40 @@ import org.eclipse.debug.core.model.IWatchExpressionListener;
 import org.eclipse.debug.core.model.IWatchExpressionResult;
 
 /**
- *
+ * 
  */
 public class PHPWatchExpressionDelegate implements IWatchExpressionDelegate {
 
-       public void evaluateExpression (String expression, IDebugElement context, IWatchExpressionListener listener) {
-       IWatchExpressionResult  x;
-               PHPDBGProxy                     dbg;
-               PHPStackFrame                   s;
+       public void evaluateExpression(String expression, IDebugElement context,
+                       IWatchExpressionListener listener) {
+               IWatchExpressionResult x;
+               PHPDBGProxy dbg;
+               PHPStackFrame s;
 
-               dbg = ((PHPDebugTarget) context.getDebugTarget ()).getPHPDBGProxy ();
-               s   = null;
+               dbg = ((PHPDebugTarget) context.getDebugTarget()).getPHPDBGProxy();
+               s = null;
 
                if (context instanceof PHPStackFrame) {
                        s = (PHPStackFrame) context;
                }
 
                try {
-                       PHPVariable result[] = dbg.eval (s, expression);
+                       PHPVariable result[] = dbg.eval(s, expression);
 
                        if (result.length == 0) {
-                               x = new PHPWatchExpressionResult (expression, null, null);
+                               x = new PHPWatchExpressionResult(expression, null, null);
+                       } else {
+                               x = new PHPWatchExpressionResult(expression, result[0]
+                                               .getValue(), null);
                        }
-                       else {
-                               x = new PHPWatchExpressionResult (expression, result[0].getValue (), null);
-                       }
-               }
-               catch (Exception e) {
+               } catch (Exception e) {
                        String[] s1;
 
-                       s1    = new String[1];
-                       s1[0] = e.toString ();
-                       x     = new PHPWatchExpressionResult (expression, null, s1);
+                       s1 = new String[1];
+                       s1[0] = e.toString();
+                       x = new PHPWatchExpressionResult(expression, null, s1);
                }
 
-               listener.watchEvaluationFinished (x);
+               listener.watchEvaluationFinished(x);
        }
 }