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   public Literal(final int sourceStart, final int sourceEnd) {
17     super(sourceStart, sourceEnd);
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 }