1 package net.sourceforge.phpdt.internal.compiler.parser;
6 * The interface that will describe an object that can have children.
7 * @author Matthieu Casanova
9 public interface OutlineableWithChildren extends Outlineable {
10 boolean add(Outlineable o);
12 Outlineable get(int index);