mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[229914] Implement Update Policy support for Memory View
This commit is contained in:
parent
409994f93a
commit
3a557eade1
2 changed files with 4 additions and 4 deletions
|
@ -10,13 +10,13 @@
|
|||
* Wind River Systems - Ted Williams - initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.dd.dsf.debug.memory;
|
||||
package org.eclipse.dd.dsf.debug.internal.provisional.model;
|
||||
|
||||
/*
|
||||
* This interface is EXPERIMENTAL.
|
||||
*/
|
||||
|
||||
public interface IMemoryBlockUpdatePolicy
|
||||
public interface IMemoryBlockUpdatePolicyProvider
|
||||
{
|
||||
public String[] getUpdatePolicies();
|
||||
|
|
@ -28,7 +28,7 @@ import org.eclipse.dd.dsf.concurrent.DataRequestMonitor;
|
|||
import org.eclipse.dd.dsf.concurrent.Query;
|
||||
import org.eclipse.dd.dsf.concurrent.RequestMonitor;
|
||||
import org.eclipse.dd.dsf.debug.internal.DsfDebugPlugin;
|
||||
import org.eclipse.dd.dsf.debug.memory.IMemoryBlockUpdatePolicy;
|
||||
import org.eclipse.dd.dsf.debug.internal.provisional.model.IMemoryBlockUpdatePolicyProvider;
|
||||
import org.eclipse.dd.dsf.debug.service.IMemory;
|
||||
import org.eclipse.dd.dsf.debug.service.IRunControl;
|
||||
import org.eclipse.dd.dsf.debug.service.IMemory.IMemoryChangedEvent;
|
||||
|
@ -50,7 +50,7 @@ import org.eclipse.debug.core.model.MemoryByte;
|
|||
*
|
||||
* It performs its read/write functions using the MemoryService.
|
||||
*/
|
||||
public class DsfMemoryBlock extends PlatformObject implements IMemoryBlockExtension, IMemoryBlockUpdatePolicy
|
||||
public class DsfMemoryBlock extends PlatformObject implements IMemoryBlockExtension, IMemoryBlockUpdatePolicyProvider
|
||||
{
|
||||
private final static String UPDATE_POLICY_AUTOMATIC = "Automatic"; //$NON-NLS-1$
|
||||
private final static String UPDATE_POLICY_MANUAL = "Manual"; //$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue