1 package net.sourceforge.phpdt.internal.compiler.parser;
3 import java.util.TreeSet;
9 public class PHPOutlineInfo {
11 PHPSegmentWithChildren fDeclarations;
13 public PHPOutlineInfo(Object parent) {
14 fVariables = new TreeSet();
15 fDeclarations = new PHPClassDeclaration(parent, "_root", 1);
18 public TreeSet getVariables() {
22 public PHPSegmentWithChildren getDeclarations() {
26 public boolean add(PHPFunctionDeclaration o) {
27 return fDeclarations.add(o);
30 public boolean addVariable(String variable) {
31 return fVariables.add(variable);