X-Git-Url: http://secure.phpeclipse.com 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..cb883cc 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 @@ -1,6 +1,5 @@ package net.sourceforge.phpeclipse.phpeditor.phpparser; -import java.util.TreeMap; import java.util.TreeSet; /** @@ -9,7 +8,7 @@ import java.util.TreeSet; */ public class PHPOutlineInfo { TreeSet fVariables; - PHPClassDeclaration fDeclarations; + PHPSegmentWithChildren fDeclarations; public PHPOutlineInfo(Object parent) { fVariables = new TreeSet(); @@ -20,7 +19,7 @@ public class PHPOutlineInfo { return fVariables; } - public PHPClassDeclaration getDeclarations() { + public PHPSegmentWithChildren getDeclarations() { return fDeclarations; }