Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a3a0cf5e742af15ffd42bafe21cc2458ecc2fa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */
package org.eclipse.cdt.debug.core.cdi.event;

/**
 * 
 * Notifies that the originator has changed.
 *
 */
public interface ICDIMemoryChangedEvent extends ICDIChangedEvent {
	/**
	 * @return the modified addresses.
	 */
	Long[] getAddresses();
}

Back to the top