1 package net.sourceforge.phpeclipse.phpeditor.phpparser;
 
   3 import java.util.TreeMap;
 
   4 import java.util.TreeSet;
 
  10 public class PHPOutlineInfo {
 
  12   PHPClassDeclaration fDeclarations;
 
  14   public PHPOutlineInfo(Object parent) {
 
  15     fVariables = new TreeSet();
 
  16     fDeclarations = new PHPClassDeclaration(parent, "_root", 1);
 
  19   public TreeSet getVariables() {
 
  23   public PHPClassDeclaration getDeclarations() {
 
  27   public boolean add(PHPFunctionDeclaration o) {
 
  28     return fDeclarations.add(o);
 
  31   public boolean addVariable(String variable) {
 
  32     return fVariables.add(variable);