Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Literal.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4
5 /**
6  * Here is the Superclass of the Literal expressions.
7  * @author Matthieu Casanova
8  */
9 public abstract class Literal extends Expression {
10
11   /**
12    * Create a Literal.
13    * @param sourceStart starting offset
14    * @param sourceEnd ending offset
15    */
16   protected Literal(final int sourceStart, final int sourceEnd) {
17     super(sourceStart, sourceEnd);
18   }
19
20   /**
21    * Get the variables from outside (parameters, globals ...)
22    *
23    * @param list the list where we will put variables
24    */
25   public final void getOutsideVariable(final List list) {}
26
27   /**
28    * get the modified variables.
29    *
30    * @param list the list where we will put variables
31    */
32   public final void getModifiedVariable(final List list) {}
33
34   /**
35    * Get the variables used.
36    *
37    * @param list the list where we will put variables
38    */
39   public void getUsedVariable(final List list) {}
40 }