Two interfaces added for outlineable objects
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / OutlineableWithChildren.java
1 package net.sourceforge.phpdt.internal.compiler.parser;
2
3 /**
4  * The interface that will describe an object that can have children
5  * @author Matthieu Casanova
6  */
7 public interface OutlineableWithChildren extends Outlineable {
8   boolean add(Outlineable o);
9
10   Outlineable get(int index);
11
12   int size();
13 }