KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > designer > model > InsertableDesignComponent


1 /*
2  * (c) Rob Gordon 2005.
3  */

4 package org.oddjob.designer.model;
5
6 /**
7  * A DesignComponent which has a list of children into which other
8  * child can be inserted.
9  */

10 public interface InsertableDesignComponent extends StructuralDesignComponent {
11
12     /**
13      * Insert a child.
14      *
15      * @param child The child.
16      */

17     public void insertChild(int index, DesignComponent child);
18
19
20 }
21
Popular Tags