Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b1668bf90fcac2a67bd1a3d18411564e5ae542c9 (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
67
68
69
/*******************************************************************************
 * Copyright (c) 2005 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.internal.ui.views.memory;

import org.eclipse.debug.core.model.IMemoryBlock;
import org.eclipse.debug.internal.ui.viewers.PresentationContext;
import org.eclipse.debug.ui.memory.IMemoryRendering;
import org.eclipse.ui.IWorkbenchPart;

public class MemoryViewPresentationContext extends PresentationContext {

	private String fContainerId;			// optional field to indicate which container the context is in
	private IMemoryRendering fRendering;	// optional field to indicate which rendering the context is in
	private MemoryView fMemoryView;
	
	public MemoryViewPresentationContext(IWorkbenchPart part) {
		super(part);
		
		if (part instanceof MemoryView){
			fMemoryView = (MemoryView)part;
		}
	}
	
	public void setContainerId(String paneId)
	{
		fContainerId = paneId;
	}
	
	public String getContainerId()
	{
		return fContainerId;
	}
	
	public void setRendering(IMemoryRendering rendering)
	{
		fRendering = rendering;
	}
	
	public IMemoryRendering getRendering()
	{
		return fRendering;
	}
	
	public boolean isPinMBDisplay()
	{
		if (fMemoryView != null)
		{
			return fMemoryView.isPinMBDisplay();
		}
		return false;
	}
	
	public boolean isMemoryBlockRegistered(IMemoryBlock memoryBlock)
	{
		if (fMemoryView != null)
		{
			return fMemoryView.isMemoryBlockRegistered(memoryBlock);
		}
		return false;
	}
}

Back to the top