KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > tasklist > core > util > ObjectListListener


1 /*
2  * ObjectListListener.java
3  *
4  * Created on 14. Januar 2007, 11:45
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.modules.tasklist.core.util;
11
12 import java.util.EventListener JavaDoc;
13
14 /**
15  * A listener for an ObjectList. Objects from this list could
16  * implement this interface. Such an itemy will not be informed about
17  * all changes. It will be informed about changes associated
18  * with it.
19  *
20  * @author tl
21  */

22 public interface ObjectListListener extends EventListener JavaDoc {
23     /**
24      * A change in the list occured.
25      *
26      * @param e an event
27      */

28     public void listChanged(ObjectListEvent e);
29 }
30
31
32
Popular Tags