1 package net.sourceforge.phpdt.internal.compiler.ast;
4 * An abstract variable declaration.
5 * @author Matthieu Casanova
7 public class AbstractVariableDeclaration extends AstNode {
8 /** The name of the variable. */
12 * Get the name of the field as String.
13 * @return the name of the String
15 public String name() {
16 return String.valueOf(name);