1 package net.sourceforge.phpdt.internal.compiler.ast;
3 import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren;
4 import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
5 import net.sourceforge.phpdt.internal.ui.PHPUiImages;
6 import org.eclipse.jface.resource.ImageDescriptor;
7 import org.eclipse.jface.text.Position;
9 import java.util.ArrayList;
10 import java.util.List;
13 * It's a php document.
14 * This class is an outlineable object
15 * It will contains html and php
16 * @author Matthieu Casanova
18 public class PHPDocument implements OutlineableWithChildren {
22 * It will include html nodes or php nodes
24 public AstNode[] nodes;
28 /** The parent of the object. */
31 /** The outlineable children (those will be in the node array too. */
32 private ArrayList children = new ArrayList();
34 private Position position;
36 * Create the PHPDocument.
37 * @param parent the parent object (it should be null isn't it ?)
39 public PHPDocument(Object parent, char[] name) {
42 position = new Position(1,name.length);
46 * Return the php document as String.
47 * @return a string representation of the object.
49 public String toString() {
50 final StringBuffer buff = new StringBuffer();
54 for (i = 0; i < nodes.length; i++) {
59 buff.append(node.toString(0));
60 if (node instanceof HTMLCode) {
67 return buff.toString();
71 * Add an outlineable object.
72 * @param o the new outlineable
73 * @return does the addition worked ?
75 public boolean add(Outlineable o) {
76 return children.add(o);
80 * Return the outlineable at the index.
81 * @param index the index
82 * @return an outlineable object
84 public Outlineable get(int index) {
85 return (Outlineable) children.get(index);
89 * The number of outlineable children.
90 * @return the number of children that are outlineable
93 return children.size();
97 * This will return the image for the outline of the object.
100 public ImageDescriptor getImage() {
101 return PHPUiImages.DESC_CLASS;
105 * Get the parent of the object.
106 * @return the parent of the object
108 public Object getParent() {
112 public Position getPosition() {
116 public List getList() {