View Javadoc

1   /*
2    * Created on Dec 12, 2003
3    *
4    * To change the template for this generated file go to
5    * Window - Preferences - Java - Code Generation - Code and Comments
6    */
7   package org.apache.log4j.chainsaw;
8   
9   import javax.swing.DefaultListModel;
10  
11  /***
12   * @author Paul Smith <psmith@apache.org>
13   *
14   */
15  public class ModifiableListModel extends DefaultListModel {
16    public void fireContentsChanged(){
17      fireContentsChanged(this,0, this.size());
18    }
19  
20  }