237ce92beea0240561c3acedaa15e218ed67c991
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AstNode.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4
5 /**
6  * It will be the mother of our own ast tree for php just like the ast tree of Eclipse.
7  * @author Matthieu Casanova
8  */
9 public abstract class AstNode {
10
11   /** Starting and ending position of the node in the sources. */
12   public int sourceStart, sourceEnd;
13
14   /**
15    * Create a node giving starting and ending offset
16    * @param sourceStart starting offset
17    * @param sourceEnd ending offset
18    */
19   public AstNode(final int sourceStart, final int sourceEnd) {
20     this.sourceStart = sourceStart;
21     this.sourceEnd = sourceEnd;
22   }
23
24   /**
25    * Add some tabulations.
26    * @param tab the number of tabulations
27    * @return a String containing some spaces
28    */
29   public static String tabString(final int tab) {
30     final StringBuffer s = new StringBuffer(2 * tab);
31     for (int i = tab; i > 0; i--) {
32       s.append("  "); //$NON-NLS-1$
33     }
34     return s.toString();
35   }
36
37   /**
38    * Return the object into String.
39    * It should be overriden
40    * @return a String
41    */
42   public String toString() {
43     return "****" + super.toString() + "****";  //$NON-NLS-2$ //$NON-NLS-1$
44   }
45
46   /**
47    * Return the object into String.
48    * @param tab how many tabs (not used here
49    * @return a String
50    */
51   public abstract String toString(int tab);
52
53   /**
54    * Get the variables from outside (parameters, globals ...)
55    * @return the variables from outside
56    */
57   public abstract List getOutsideVariable();
58
59   /**
60    * get the modified variables.
61    * @return the variables modified
62    */
63   public abstract List getModifiedVariable();
64
65   /**
66    * Get the variables used.
67    * @return the variables used
68    */
69   public abstract List getUsedVariable();
70 }