import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren;
import net.sourceforge.phpdt.internal.ui.PHPUiImages;
-import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.text.Position;
}
/**
- * Return the body of the class as String
+ * Return the body of the class as String.
* @param tab how many tabs before the body of the class
* @return the body as String
*/
}
public int size() {
- PHPeclipsePlugin.log(1,"class size : "+children.size());
return children.size();
}
public String toString() {
- final StringBuffer buff = new StringBuffer(new String(name));//$NON-NLS-1$
+ final StringBuffer buff = new StringBuffer(new String(name));
if (superclass != null) {
buff.append(":"); //$NON-NLS-1$
buff.append(superclass);