some bugfixes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AstNode.java
index 2f0fe2d..56dddfd 100644 (file)
@@ -1,6 +1,7 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
 import java.util.List;
+import java.util.ArrayList;
 
 /**
  * It will be the mother of our own ast tree for php just like the ast tree of Eclipse.
@@ -9,7 +10,7 @@ import java.util.List;
 public abstract class AstNode {
 
   /** Starting and ending position of the node in the sources. */
-  private int sourceStart, sourceEnd;
+  public int sourceStart, sourceEnd;
 
   /**
    * Create a node giving starting and ending offset
@@ -17,8 +18,8 @@ public abstract class AstNode {
    * @param sourceEnd ending offset
    */
   public AstNode(final int sourceStart, final int sourceEnd) {
-    this.setSourceStart(sourceStart);
-    this.setSourceEnd(sourceEnd);
+    this.sourceStart = sourceStart;
+    this.sourceEnd = sourceEnd;
   }
 
   /**
@@ -68,19 +69,25 @@ public abstract class AstNode {
    */
   public abstract List getUsedVariable();
 
-  public int getSourceStart() {
-    return sourceStart;
-  }
-
-  public int getSourceEnd() {
-    return sourceEnd;
-  }
-
-  public void setSourceStart(int sourceStart) {
-    this.sourceStart = sourceStart;
+  /**
+   * This method will analyze the code.
+   * by default it will do nothing
+   */
+  public void analyzeCode() {
   }
 
-  public void setSourceEnd(int sourceEnd) {
-    this.sourceEnd = sourceEnd;
+  /**
+   * Check if the array array contains the object o
+   * @param array an array
+   * @param o an obejct
+   * @return true if the array contained the object o
+   */
+  public boolean arrayContains(Object[] array, Object o) {
+    for (int i = 0; i < array.length; i++) {
+      if (array[i].equals(o)) {
+        return true;
+      }
+    }
+    return false;
   }
 }