initial contribution
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / OutlineableWithChildren.java
index 430a136..c7bfd79 100644 (file)
@@ -1,7 +1,9 @@
 package net.sourceforge.phpdt.internal.compiler.parser;
 
+import java.util.List;
+
 /**
- * The interface that will describe an object that can have children
+ * The interface that will describe an object that can have children.
  * @author Matthieu Casanova
  */
 public interface OutlineableWithChildren extends Outlineable {
@@ -10,4 +12,6 @@ public interface OutlineableWithChildren extends Outlineable {
   Outlineable get(int index);
 
   int size();
+
+  List getList();
 }