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