2964394debec5c6135beb35b42d73a60c3c781a5
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / EmptyStatement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 /**
7  * An empty statement.
8  * @author Matthieu Casanova
9  */
10 public class EmptyStatement extends Statement {
11
12   public EmptyStatement(final int sourceStart, final int sourceEnd) {
13     super(sourceStart, sourceEnd);
14   }
15
16   public String toString(final int tab) {
17     return tabString(tab) + ";"; //$NON-NLS-1$
18   }
19
20   /**
21    * Get the variables from outside (parameters, globals ...)
22    */
23   public void getOutsideVariable(final List list) {
24   }
25
26   /**
27    * get the modified variables.
28    */
29   public void getModifiedVariable(final List list) {
30   }
31
32   /**
33    * Get the variables used.
34    */
35   public void getUsedVariable(final List list) {
36   }
37 }