org.eclipse.emf.edit.provider.ChangeNotifier Maven / Gradle / Ivy
/**
* Copyright (c) 2002-2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.emf.edit.provider;
import java.util.ArrayList;
import org.eclipse.emf.common.notify.Notification;
/**
* This is a simple and obvious implementation of {@link IChangeNotifier} as an extension of an ArrayList, for flexibility.
*/
public class ChangeNotifier extends ArrayList implements IChangeNotifier
{
private static final long serialVersionUID = 1L;
public ChangeNotifier()
{
super();
}
/**
* This calls {@link org.eclipse.emf.edit.provider.INotifyChangedListener#notifyChanged notifyChanged} for each listener.
*/
public void fireNotifyChanged(Notification notification)
{
int size = size();
INotifyChangedListener [] listeners = new INotifyChangedListener[size];
toArray(listeners);
for (int i = 0; i < size; ++i)
{
INotifyChangedListener notifyChangedListener = listeners[i];
if (this.contains(notifyChangedListener))
{
notifyChangedListener.notifyChanged(notification);
}
}
}
/**
* This adds another listener.
*/
public void addListener(INotifyChangedListener notifyChangedListener)
{
add(notifyChangedListener);
}
/**
* This removes a listener.
*/
public void removeListener(INotifyChangedListener notifyChangedListener)
{
remove(notifyChangedListener);
}
}