3f6e8aa78cfe439af69100bc1ef1e7454b40189c
[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 import java.util.ArrayList;
5
6 /**
7  * Here is the Superclass of the Literal expressions.
8  * @author Matthieu Casanova
9  */
10 public abstract class Literal extends Expression {
11
12   /**
13    * Create a Literal.
14    * @param sourceStart starting offset
15    * @param sourceEnd ending offset
16    */
17   public Literal(final int sourceStart, final int sourceEnd) {
18     super(sourceStart, sourceEnd);
19   }
20
21   /**
22    * Get the variables from outside (parameters, globals ...)
23    */
24   public void getOutsideVariable(final List list) {
25   }
26
27   /**
28    * get the modified variables.
29    */
30   public void getModifiedVariable(final List list) {
31   }
32
33   /**
34    * Get the variables used.
35    */
36   public void getUsedVariable(final List list) {
37   }
38 }