It's now possible to assign a value to a variable
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / phpparser / PHPVarDeclaration.java
1 package net.sourceforge.phpeclipse.phpeditor.phpparser;
2
3 import net.sourceforge.phpdt.internal.ui.PHPUiImages;
4 import org.eclipse.jface.resource.ImageDescriptor;
5
6 /**
7  * A php variable declaration strongly inspired by the PHPFunctionDeclaration of Khartlage (:.
8  * @author khartlage, Matthieu Casanova
9  */
10 public class PHPVarDeclaration extends PHPSegment {
11
12   private String value;
13     /**
14      * Create a php variable declaration.
15      * @param parent the parent object (it should be a php class)
16      * @param name the name of the variable
17      * @param index where the variable is in the file
18      * @param value la valeur
19      */
20     public PHPVarDeclaration(Object parent, String name, int index, String value) {
21         super(parent, name, index);
22       this.value = value;
23     }
24
25   /**
26    * Create a php variable declaration.
27    * @param parent the parent object (it should be a php class)
28    * @param name the name of the variable
29    * @param index where the variable is in the file
30    * @param value la valeur
31    */
32   public PHPVarDeclaration(Object parent, String name, int index) {
33       this(parent, name, index,null);
34   }
35
36     /**
37      * Get the image of a variable.
38      * @return the image that represents a php variable
39      */
40     public ImageDescriptor getImage() {
41         return PHPUiImages.DESC_VAR;
42     }
43
44   public String toString() {
45     if (value == null) {
46       return super.toString();
47     } else {
48       return name + " = " + value;
49     }
50   }
51 }