Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1f5178bb01e8d3173efdd600215e8eedc45c7c28 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2005, 2011 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.debug.ui.actions;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchPart;

/**
 * An adapter for an "add memory block" operation. The Memory View provides
 * a retargettable "add memory block" action that debuggers may plug into
 * by providing an adapter (see <code>IAdaptable</code>) of this type.
 * <p>
 * Clients may implement this interface.
 * </p>
 * @since 3.2
 */
public interface IAddMemoryBlocksTarget {

	/**
	 * Returns whether an add memory block operation can be performed from the specified
	 * part and the given selection.
	 *
	 * @param part the part on which the action has been invoked
	 * @param selection the selection on which the action has been invoked
	 * @return <code>true</code> if the add memory block operation can be performed from the given part and selection, <code>false</code> otherwise
	 * @throws CoreException if unable to perform the action
	 */
	boolean canAddMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;

	/**
	 * Returns whether this target will support adding memory block from the specified
	 * part.
	 * @param part the workbench part to check
	 * @return true if the target wants to support adding memory block from the given
	 * part, false otherwise.
	 */
	boolean supportsAddMemoryBlocks(IWorkbenchPart part);


	/**
	 * Perform an add memory block on the given element that is
	 * currently selected in the Debug view. If a memory block can be successfully
	 * created, implementations must add the resulted memory block to <code>IMemoryBlockManager</code>
	 * In addition, implementations must query to see if default renderings should be created
	 * for the given memory block and add these renderings accordingly.
	 *
	 * @param part the part on which the action has been invoked
	 * @param selection the selection on which the action has been invoked
	 * @throws CoreException if unable to perform the action
	 *
	 * @see org.eclipse.debug.core.model.IMemoryBlockRetrieval
	 * @see org.eclipse.debug.ui.memory.IMemoryRenderingManager
	 * @see org.eclipse.debug.core.IMemoryBlockManager
	 */
	void addMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;
}

Back to the top