*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / MethodDeclaration.java
index 1ee9990..93097f0 100644 (file)
@@ -17,11 +17,15 @@ import java.util.ArrayList;
  */
 public class MethodDeclaration extends Statement implements OutlineableWithChildren {
 
+  /** The name of the method. */
   public char[] name;
   public Hashtable arguments;
+
+
   public Statement[] statements;
   public int bodyStart;
   public int bodyEnd = -1;
+  /** Tell if the method is a class constructor. */
   public boolean isConstructor;
   private Object parent;
   /** The outlineable children (those will be in the node array too. */