package net.sourceforge.phpeclipse.phpeditor.phpparser;
-import java.util.TreeMap;
import java.util.TreeSet;
/**
*/
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;
}