Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 156c0073edf10990d0d256a9df0e8ba53d2704f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.eclipse.papyrus.diagram.common.editparts;

import java.util.Iterator;

import org.eclipse.gef.editparts.AbstractEditPart;

/**
 * All edit part that implements this interface make accessible the set of eventListener
 * 
 * @see AbstractEditPart
 * 
 */
public interface IEditpartListenerAccess {

	/**
	 * Returns an iterator for the specified type of listener
	 * 
	 * @param clazz
	 *        the Listener type over which to iterate
	 * @return Iterator
	 */
	public Iterator getEventListenerIterator(Class clazz);
}

Back to the top