X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PHPDocument.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PHPDocument.java index e2d2fc5..74a6c11 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PHPDocument.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PHPDocument.java @@ -1,14 +1,15 @@ package net.sourceforge.phpdt.internal.compiler.ast; -import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren; +import java.util.ArrayList; +import java.util.List; + import net.sourceforge.phpdt.internal.compiler.parser.Outlineable; +import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren; import net.sourceforge.phpdt.internal.ui.PHPUiImages; + import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.text.Position; -import java.util.ArrayList; -import java.util.List; - /** * It's a php document. * This class is an outlineable object @@ -24,6 +25,7 @@ public class PHPDocument implements OutlineableWithChildren { public AstNode[] nodes; public char[] name; + /** The parent of the object. */ public Object parent; @@ -35,7 +37,8 @@ public class PHPDocument implements OutlineableWithChildren { * Create the PHPDocument. * @param parent the parent object (it should be null isn't it ?) */ - public PHPDocument(Object parent, char[] name) { + public PHPDocument(final Object parent, + final char[] name) { this.parent = parent; this.name = name; position = new Position(1,name.length); @@ -56,7 +59,11 @@ public class PHPDocument implements OutlineableWithChildren { break; } buff.append(node.toString(0)); - buff.append(";\n"); + if (node instanceof HTMLCode) { + buff.append("\n");//$NON-NLS-1$ + } else { + buff.append(";\n");//$NON-NLS-1$ + } } } return buff.toString(); @@ -67,7 +74,7 @@ public class PHPDocument implements OutlineableWithChildren { * @param o the new outlineable * @return does the addition worked ? */ - public boolean add(Outlineable o) { + public boolean add(final Outlineable o) { return children.add(o); } @@ -76,7 +83,7 @@ public class PHPDocument implements OutlineableWithChildren { * @param index the index * @return an outlineable object */ - public Outlineable get(int index) { + public Outlineable get(final int index) { return (Outlineable) children.get(index); }