Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractVariable.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractVariable.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractVariable.java
deleted file mode 100644 (file)
index 9a91e22..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-/**
- * The variable superclass.
- * @author Matthieu Casanova
- */
-public abstract class AbstractVariable extends Expression {
-  protected AbstractVariable(final int sourceStart, final int sourceEnd) {
-    super(sourceStart, sourceEnd);
-  }
-
-  /**
-   * This method will return the name of the variable.
-   * @return a string containing the name of the variable.
-   */
-  public abstract String getName();
-}