1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New event trigger by memory changes.

This commit is contained in:
Alain Magloire 2002-10-19 19:15:41 +00:00
parent 73c66134ef
commit 273ab56e71

View file

@ -0,0 +1,19 @@
/*
*(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();
}