1 /*2 * GridSplitModelListener.java3 *4 * Created on 5. duben 2005, 11:525 *6 * To change this template, choose Tools | Options and locate the template under7 * the Source Creation and Management node. Right-click the template and choose8 * 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 sa15485016 */17 public interface GridSplitModelListener {18 void cellAdded( GridSplitCell cell );19 void cellRemoved( GridSplitCell cell );20 void cellModified( GridSplitCell oldValue, GridSplitCell newValue );21 }22