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;
27 /** The parent of the object. */
30 /** The outlineable children (those will be in the node array too. */
31 private ArrayList children = new ArrayList();
33 private Position position;
35 * Create the PHPDocument.
36 * @param parent the parent object (it should be null isn't it ?)
38 public PHPDocument(Object parent, char[] name) {
41 position = new Position(1,name.length);
45 * Return the php document as String.
46 * @return a string representation of the object.
48 public String toString() {
49 final StringBuffer buff = new StringBuffer();
53 for (i = 0; i < nodes.length; i++) {
58 buff.append(node.toString(0));
62 return buff.toString();
66 * Add an outlineable object.
67 * @param o the new outlineable
68 * @return does the addition worked ?
70 public boolean add(Outlineable o) {
71 return children.add(o);
75 * Return the outlineable at the index.
76 * @param index the index
77 * @return an outlineable object
79 public Outlineable get(int index) {
80 return (Outlineable) children.get(index);
84 * The number of outlineable children.
85 * @return the number of children that are outlineable
88 return children.size();
92 * This will return the image for the outline of the object.
95 public ImageDescriptor getImage() {
96 return PHPUiImages.DESC_CLASS;
100 * Get the parent of the object.
101 * @return the parent of the object
103 public Object getParent() {
107 public Position getPosition() {
111 public List getList() {