*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / EmptyStatement.java
index 780c841..1585fc4 100644 (file)
@@ -1,16 +1,43 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
+import java.util.List;
+import java.util.ArrayList;
+
 /**
  * An empty statement.
  * @author Matthieu Casanova
  */
 public class EmptyStatement extends Statement {
 
-  public EmptyStatement(int sourceStart, int sourceEnd) {
+  public EmptyStatement(final int sourceStart, final int sourceEnd) {
     super(sourceStart, sourceEnd);
   }
 
-  public String toString(int tab) {
+  public String toString(final int tab) {
     return tabString(tab) + ";"; //$NON-NLS-1$
   }
+
+  /**
+   * Get the variables from outside (parameters, globals ...)
+   * @return an empty list
+   */
+  public List getOutsideVariable() {
+    return new ArrayList();
+  }
+
+  /**
+   * get the modified variables.
+   * @return an empty list
+   */
+  public List getModifiedVariable() {
+    return new ArrayList();
+  }
+
+  /**
+   * Get the variables used.
+   * @return an empty list
+   */
+  public List getUsedVariable() {
+    return new ArrayList();
+  }
 }