*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / phpparser / PHPVarDeclaration.java
index 1a40ab9..5fec740 100644 (file)
@@ -1,6 +1,7 @@
 package net.sourceforge.phpeclipse.phpeditor.phpparser;
 
 import net.sourceforge.phpdt.internal.ui.PHPUiImages;
+
 import org.eclipse.jface.resource.ImageDescriptor;
 
 /**
@@ -9,16 +10,17 @@ import org.eclipse.jface.resource.ImageDescriptor;
  */
 public class PHPVarDeclaration extends PHPSegment {
 
+  /** The value of the variable. */
   private String value;
     /**
      * Create a php variable declaration.
      * @param parent the parent object (it should be a php class)
      * @param name the name of the variable
      * @param index where the variable is in the file
-     * @param value la valeur
+     * @param value the value
      */
     public PHPVarDeclaration(Object parent, String name, int index, String value) {
-        super(parent, name, index);
+      super(parent, name, index);
       this.value = value;
     }
 
@@ -27,7 +29,6 @@ public class PHPVarDeclaration extends PHPSegment {
    * @param parent the parent object (it should be a php class)
    * @param name the name of the variable
    * @param index where the variable is in the file
-   * @param value la valeur
    */
   public PHPVarDeclaration(Object parent, String name, int index) {
       this(parent, name, index,null);
@@ -42,7 +43,7 @@ public class PHPVarDeclaration extends PHPSegment {
     }
 
   public String toString() {
-    if (value == null) {
+    if (value == null || value.equals("")) {
       return super.toString();
     } else {
       return name + " = " + value;