blob: 9779cd95b08e22ba540ce9f1755e4f508988752a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.eventmgr;
import java.util.Map;
import java.util.Set;
/**
* This class manages a list of listeners.
*
* Listeners may be added or removed as necessary.
*
* This class uses identity for comparison, not equals.
*
* @since 3.1
* @deprecated As of 3.5. Replaced by CopyOnWriteIdentityMap.
* @noextend This class is not intended to be subclassed by clients.
*/
public class EventListeners<K, V> {
private final CopyOnWriteIdentityMap<K, V> list = new CopyOnWriteIdentityMap<>();
/**
* Creates an empty listener list.
*
*/
public EventListeners() {
super();
}
/**
* Creates an empty listener list.
*
* @param capacity This argument is ignored.
*/
public EventListeners(int capacity) {
this();
}
/**
* Add a listener to the list.
* If a listener object is already in the list, then it is replaced.
* This method calls the put method.
*
* @param listener This is the listener object to be added to the list.
* @param listenerObject This is an optional listener-specific object.
* This object will be passed to the EventDispatcher along with the listener
* when the listener is to be called. This may be null
* @throws IllegalArgumentException If listener is null.
*/
public void addListener(K listener, V listenerObject) {
list.put(listener, listenerObject);
}
/**
* Remove a listener from the list.
* This method calls the remove method.
*
* @param listener This is the listener object to be removed from the list.
* @throws IllegalArgumentException If listener is null.
*/
public void removeListener(K listener) {
list.remove(listener);
}
/**
* Remove all listeners from the list.
*
* This method calls the clear method.
*/
public void removeAllListeners() {
list.clear();
}
/**
* Get the entry Set from the internal CopyOnWriteIdentityMap.
* @return The entry Set.
*/
Set<Map.Entry<K, V>> entrySet() {
return list.entrySet();
}
}