X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/PHPOutlineInfo.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/PHPOutlineInfo.java deleted file mode 100644 index 9da892a..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/PHPOutlineInfo.java +++ /dev/null @@ -1,38 +0,0 @@ -package net.sourceforge.phpdt.internal.compiler.parser; - -import java.util.TreeSet; - -/** - * - * @author khartlage - */ -public class PHPOutlineInfo { - TreeSet fVariables; - OutlineableWithChildren fDeclarations; - - public PHPOutlineInfo(Object parent) { - fVariables = new TreeSet(); - fDeclarations = new PHPClassDeclaration(parent, "_root", 1); - } - - public PHPOutlineInfo(Object parent, OutlineableWithChildren phpDocument) { - fVariables = new TreeSet(); - fDeclarations = phpDocument; - } - - public TreeSet getVariables() { - return fVariables; - } - - public OutlineableWithChildren getDeclarations() { - return fDeclarations; - } - - public boolean add(OutlineableWithChildren o) { - return fDeclarations.add(o); - } - - public boolean addVariable(String variable) { - return fVariables.add(variable); - } -}