TableModelChangeListener.java :  » IDE » Schmortopf » Schmortopf » Utility » SortableTable » Java Open Source

Java Open Source » IDE » Schmortopf 
Schmortopf » Schmortopf » Utility » SortableTable » TableModelChangeListener.java
package Schmortopf.Utility.SortableTable; 


import javax.swing.event.*;

/**
 */
public interface TableModelChangeListener
{
    /** called before the change
    */
    public void tableModelWillChange(ChangeEvent e);

    /** called after the change
    */
    public void tableModelHasChanged(ChangeEvent e);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.