org.apache.commons.net.util
Class ListenerList

java.lang.Object
  extended by org.apache.commons.net.util.ListenerList
All Implemented Interfaces:
Serializable, Iterable<EventListener>

public class ListenerList
extends Object
implements Serializable, Iterable<EventListener>

See Also:
Serialized Form

Constructor Summary
ListenerList()
           
 
Method Summary
 void addListener(EventListener listener)
           
 int getListenerCount()
           
 Iterator<EventListener> iterator()
          Return an Iterator for the EventListener instances.
 void removeListener(EventListener listener)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListenerList

public ListenerList()
Method Detail

addListener

public void addListener(EventListener listener)

removeListener

public void removeListener(EventListener listener)

getListenerCount

public int getListenerCount()

iterator

public Iterator<EventListener> iterator()
Return an Iterator for the EventListener instances.

Specified by:
iterator in interface Iterable<EventListener>
Returns:
an Iterator for the EventListener instances
Since:
2.0 TODO Check that this is a good defensive strategy


Copyright © 2001-2014 The Apache Software Foundation. All Rights Reserved.