blob: e8847db41faa1610b449920a3f7f7d8f18d05a9e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.contexts.registry;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
abstract class AbstractContextRegistry implements IContextRegistry {
private IContextRegistryEvent contextRegistryEvent;
private List contextRegistryListeners;
protected List contextDefinitions = Collections.EMPTY_LIST;
protected AbstractContextRegistry() {
}
public void addContextRegistryListener(IContextRegistryListener contextRegistryListener) {
if (contextRegistryListener == null)
throw new NullPointerException();
if (contextRegistryListeners == null)
contextRegistryListeners = new ArrayList();
if (!contextRegistryListeners.contains(contextRegistryListener))
contextRegistryListeners.add(contextRegistryListener);
}
public List getContextDefinitions() {
return contextDefinitions;
}
public void removeContextRegistryListener(IContextRegistryListener contextRegistryListener) {
if (contextRegistryListener == null)
throw new NullPointerException();
if (contextRegistryListeners != null) {
contextRegistryListeners.remove(contextRegistryListener);
if (contextRegistryListeners.isEmpty())
contextRegistryListeners = null;
}
}
protected void fireContextRegistryChanged() {
if (contextRegistryListeners != null) {
// TODO copying to avoid ConcurrentModificationException
Iterator iterator = new ArrayList(contextRegistryListeners).iterator();
if (iterator.hasNext()) {
if (contextRegistryEvent == null)
contextRegistryEvent = new ContextRegistryEvent(this);
while (iterator.hasNext())
((IContextRegistryListener) iterator.next()).contextRegistryChanged(contextRegistryEvent);
}
}
}
}