1 package net.sourceforge.phpdt.internal.compiler.ast;
6 * Here is the Superclass of the Literal expressions.
7 * @author Matthieu Casanova
9 public abstract class Literal extends Expression {
13 * @param sourceStart starting offset
14 * @param sourceEnd ending offset
16 protected Literal(final int sourceStart, final int sourceEnd) {
17 super(sourceStart, sourceEnd);
21 * Get the variables from outside (parameters, globals ...)
23 * @param list the list where we will put variables
25 public final void getOutsideVariable(final List list) {}
28 * get the modified variables.
30 * @param list the list where we will put variables
32 public final void getModifiedVariable(final List list) {}
35 * Get the variables used.
37 * @param list the list where we will put variables
39 public void getUsedVariable(final List list) {}