*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractVariableDeclaration.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage;
4
5 import java.util.List;
6 import java.util.ArrayList;
7
8
9 /**
10  * An abstract variable declaration.
11  * @author Matthieu Casanova
12  */
13 public abstract class AbstractVariableDeclaration extends Expression {
14   /** The name of the variable. */
15   public char[] name;
16
17   /**
18    * Create a node giving starting and ending offset
19    * @param sourceStart starting offset
20    * @param sourceEnd ending offset
21    * @param name the name of the variable
22    */
23   public AbstractVariableDeclaration(final char[] name, final int sourceStart, final int sourceEnd) {
24     super(sourceStart, sourceEnd);
25     this.name = name;
26   }
27
28
29 }