*/
 public class PHPOutlineInfo {
   TreeSet fVariables;
-  PHPClassDeclaration fDeclarations;
+  PHPSegmentWithChildren fDeclarations;
 
   public PHPOutlineInfo(Object parent) {
     fVariables = new TreeSet();
     return fVariables;
   }
 
-  public PHPClassDeclaration getDeclarations() {
+  public PHPSegmentWithChildren getDeclarations() {
     return fDeclarations;
   }