Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ConstantIdentifier.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ConstantIdentifier.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ConstantIdentifier.java
deleted file mode 100644 (file)
index 0978c7d..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-import java.util.List;
-
-import test.Token;
-
-/**
- * @author Matthieu Casanova
- */
-public final class ConstantIdentifier extends Expression {
-
-  private final String name;
-
-  public ConstantIdentifier(final String name,
-                            final int sourceStart,
-                            final int sourceEnd) {
-    super(sourceStart, sourceEnd);
-    this.name = name;
-  }
-
-  public ConstantIdentifier(final Token token) {
-    super(token.sourceStart,token.sourceEnd);
-    name = token.image;
-  }
-
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    return name;
-  }
-
-  /**
-   * Get the variables from outside (parameters, globals ...)
-   *
-   * @param list the list where we will put variables
-   */
-  public void getOutsideVariable(final List list) {}
-
-  /**
-   * get the modified variables.
-   *
-   * @param list the list where we will put variables
-   */
-  public void getModifiedVariable(final List list) {}
-
-  /**
-   * Get the variables used.
-   *
-   * @param list the list where we will put variables
-   */
-  public void getUsedVariable(final List list) {}
-}