blob: 7bed440f78f4f77e1069d3248a862c1c2d6965cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.emc.plainxml;
public interface LoudListListener<E> {
public void objectAdded(LoudList<E> list, E o);
public void objectAdded(LoudList<E> list, E o, int index);
public void objectRemoved(LoudList<E> list, E o);
public void objectRemoved(LoudList<E> list, E o, int index);
}