KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > swing > gridsplit > GridSplitModelListener


1 /*
2  * GridSplitModelListener.java
3  *
4  * Created on 5. duben 2005, 11:52
5  *
6  * To change this template, choose Tools | Options and locate the template under
7  * the Source Creation and Management node. Right-click the template and choose
8  * Open. You can then make changes to the template in the Source Editor.
9  */

10
11 package org.netbeans.swing.gridsplit;
12
13 /**
14  *
15  * @author sa154850
16  */

17 public interface GridSplitModelListener {
18     void cellAdded( GridSplitCell cell );
19     void cellRemoved( GridSplitCell cell );
20     void cellModified( GridSplitCell oldValue, GridSplitCell newValue );
21 }
22
Popular Tags