package net.sourceforge.phpdt.internal.compiler.ast; /** * An abstract variable declaration. * @author Matthieu Casanova */ public class AbstractVariableDeclaration extends AstNode { /** The name of the variable. */ public char[] name; /** * Get the name of the field as String. * @return the name of the String */ public String name() { return String.valueOf(name); } }