8df3dfb5451d245fb9c3d7f3e7c667b46955a3b7
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractVariableDeclaration.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * An abstract variable declaration.
5  * @author Matthieu Casanova
6  */
7 public class AbstractVariableDeclaration extends AstNode {
8   /** The name of the variable. */
9   public char[] name;
10
11   /**
12    * Get the name of the field as String.
13    * @return the name of the String
14    */
15   public String name() {
16     return String.valueOf(name);
17   }
18 }