From 6f4bdb7e05655045bfb08709c669dea47a8d2ff0 Mon Sep 17 00:00:00 2001
From: kpouer <kpouer>
Date: Sat, 25 Jan 2003 15:53:07 +0000
Subject: [PATCH] Some little refactor to use the abstract PHPSegmentWithChildren instead of PHPClassDeclaration (when we have a recursive branch)

---
 .../phpeditor/phpparser/PHPOutlineInfo.java        |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPOutlineInfo.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPOutlineInfo.java
index b46f68a..8998d2b 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPOutlineInfo.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPOutlineInfo.java
@@ -9,7 +9,7 @@ import java.util.TreeSet;
  */
 public class PHPOutlineInfo {
   TreeSet fVariables;
-  PHPClassDeclaration fDeclarations;
+  PHPSegmentWithChildren fDeclarations;
 
   public PHPOutlineInfo(Object parent) {
     fVariables = new TreeSet();
@@ -20,7 +20,7 @@ public class PHPOutlineInfo {
     return fVariables;
   }
 
-  public PHPClassDeclaration getDeclarations() {
+  public PHPSegmentWithChildren getDeclarations() {
     return fDeclarations;
   }
 
-- 
1.7.1