blob: 60728ab717654f7bd7f51c3e657214f23739f16e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.core;
import org.eclipse.debug.core.model.IMemoryBlock;
/**
* A memory block listener is notified of the addition and removal
* of memory blocks with the memory block manager. Listeners must
* register with the memory block manager for notification.
* <p>
* Clients may implement this interface.
* </p>
* @since 3.1
*/
public interface IMemoryBlockListener {
/**
* Notification the given memory blocks have been added to the
* memory block manager.
*
* @param memory blocks added to the memory block manager
*/
void memoryBlocksAdded(IMemoryBlock[] memory);
/**
* Notification the given memory blocks have been removed from
* the memory block manager.
*
* @param memory blocks removed from the memory block manager
*/
void memoryBlocksRemoved(IMemoryBlock[] memory);
}