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 / PHPWatchExpressionResult.java
index 14b6c19..2d01e1c 100644 (file)
@@ -6,35 +6,36 @@ import org.eclipse.debug.core.model.IWatchExpressionResult;
 
 public class PHPWatchExpressionResult implements IWatchExpressionResult {
 
-       String text;
-       IValue result;
-       String[] err;
-
-       public PHPWatchExpressionResult(String t,IValue v,String[] e)
-       {
-               text=t;
-               result=v;
-               err=e;
-       }
-
-       public IValue getValue() {
-               return result;
-       }
-
-       public boolean hasErrors() {
-               return err != null;
-       }
-
-       public String[] getErrorMessages() {
-               return err;
-       }
-
-       public String getExpressionText() {
-               return text;
-       }
-
-       public DebugException getException() {
-               return null;
-       }
+       String text;
+
+       IValue result;
+
+       String[] err;
+
+       public PHPWatchExpressionResult(String t, IValue v, String[] e) {
+               text = t;
+               result = v;
+               err = e;
+       }
+
+       public IValue getValue() {
+               return result;
+       }
+
+       public boolean hasErrors() {
+               return err != null;
+       }
+
+       public String[] getErrorMessages() {
+               return err;
+       }
+
+       public String getExpressionText() {
+               return text;
+       }
+
+       public DebugException getException() {
+               return null;
+       }
 
 }