Event Listener List : General Event « Event « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Event » General EventScreenshots 
Event Listener List
    
/**
 * The utillib library.
 * More information is available at http://www.jinchess.com/.
 * Copyright (C) 2002 Alexander Maryanovsky.
 * All rights reserved.
 *
 * The utillib library is free software; you can redistribute
 * it and/or modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * The utillib library is distributed in the hope that it will
 * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
 * General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with utillib library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


import java.util.EventListener;
import java.lang.reflect.Array;


/**
 * A convenient storage place for Listeners. The listeners are stored in the
 * same manner as in javax.swing.event.EventListenerList.
 * <STRONG>Note:</STRONG> This class is not thread safe.
 */

public class EventListenerList{


  /**
   * The array where we keep the listeners and their types.
   */

  private Object [] listenerList = new Object[0];



  /**
   * Adds the given listener as a listener of the given type.
   */

  public void add(Class listenerType, EventListener listener){
    if (listener==null)
      return;
    if (!listenerType.isInstance(listener))
      throw new IllegalArgumentException("The listener is not an instance of the listener class.");

    Object [] tempArr = new Object[listenerList.length+2];
    System.arraycopy(listenerList,0,tempArr,0,listenerList.length);

    tempArr[tempArr.length-2= listenerType;
    tempArr[tempArr.length-1= listener;

    listenerList = tempArr;
  }



  
  /**
   * Removes the given listener as a listener of the specified type.
   */

  public void remove(Class listenerType, EventListener listener){
    if (listener == null)
      return;
    if (!listenerType.isInstance(listener))
      throw new IllegalArgumentException("The listener is not an instance of the listener class.");

    for (int i=0;i<listenerList.length;i+=2){
      if ((listenerList[i]==listenerType)&&(listenerList[i+1].equals(listener))){
        Object [] tempArr = new Object[listenerList.length-2];
        System.arraycopy(listenerList,0,tempArr,0,i);
        System.arraycopy(listenerList,i+2,tempArr,i,listenerList.length-i-2);
        listenerList = tempArr;
        return;
      }
    }
  }



  /**
   * Returns the total number of listeners for this listener list.
   */

  public int getListenerCount(){
    return listenerList.length;
  }



  /**
   * Returns the amount of listeners of the specified type in this listener
   * list.
   */

  public int getListenerCount(Class listenerType){
    int count = 0;
    for (int i=0;i<listenerList.length;i+=2){
      if (listenerList[i]==listenerType)
        count++;
    }
    return count;
  }



  /**
   * Returns an array containing all the listeners in this listener list. The
   * array contains listeners and their types in the following format: the
   * element at index 2*N is the type of the listener at index 2*N+1
   * <B>WARNING!!!</B> Absolutely NO modification of the data contained in this array
   * should be made -- if any such manipulation is necessary, it should be done on a
   * copy of the array returned rather than the array itself.
   */

  public Object [] getListenerList(){
    return listenerList;
  }



  /**
   * Returns an array of listeners registered as the listeners of the given
   * type. Note that the returned array is an array of the actual given type
   * so it can be safely casted to that type once instead of casting each of the
   * listener.
   */

  public EventListener [] getListeners(Class listenerType){
    EventListener [] listeners = (EventListener [])Array.newInstance(listenerType,getListenerCount(listenerType));
    int count = 0;
    for (int i=0;i<listenerList.length;i+=2){
      if (listenerType==listenerList[i])
        listeners[count++(EventListener)listenerList[i+1];
    }
    return listeners;
  }


}

   
    
    
    
  
Related examples in the same category
1. Swing Event MultiListener Swing Event MultiListener
2. Multicast eventMulticast event
3. EventTest PaneEventTest Pane
4. Timer EventTimer Event
5. KeyboardFocusManager.getCurrentKeyboardFocusManager().clearGlobalFocusOwner()
6. Monitors the AWT event dispatch thread for events that take longer than a certain time to be dispatched
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.