*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ClassDeclaration.java
index bbc9775..91378a0 100644 (file)
@@ -7,7 +7,6 @@ import net.sourceforge.phpeclipse.PHPeclipsePlugin;
 import org.eclipse.jface.resource.ImageDescriptor;
 
 import java.util.ArrayList;
-import java.util.Enumeration;
 
 
 /**
@@ -70,7 +69,7 @@ public class ClassDeclaration extends Statement implements OutlineableWithChildr
 
   public void addMethod(MethodDeclaration method) {
     methods.add(method);
-    children.add(method);
+    add(method);
     if (method.name.equals(name)) {
       constructor = method;
     }
@@ -159,6 +158,11 @@ public class ClassDeclaration extends Statement implements OutlineableWithChildr
   }
 
   public int size() {
+    PHPeclipsePlugin.log(1,"class size : "+children.size());
     return children.size();
   }
+
+  public String toString() {
+    return toStringHeader();
+  }
 }