c7bfd7993281c007a26947661a2964288c61fb4a
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / OutlineableWithChildren.java
1 package net.sourceforge.phpdt.internal.compiler.parser;
2
3 import java.util.List;
4
5 /**
6  * The interface that will describe an object that can have children.
7  * @author Matthieu Casanova
8  */
9 public interface OutlineableWithChildren extends Outlineable {
10   boolean add(Outlineable o);
11
12   Outlineable get(int index);
13
14   int size();
15
16   List getList();
17 }