Some little refactor to use the abstract PHPSegmentWithChildren instead of PHPClassDe...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / phpparser / PHPOutlineInfo.java
index b46f68a..8998d2b 100644 (file)
@@ -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;
   }