Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b35e5fa5b5c73fa177903e5365fec3e8ac0370b (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
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************************************
 * Copyright (c) 2005, 2013 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.memory.provisional;

import org.eclipse.debug.internal.ui.viewers.model.provisional.PresentationContext;
import org.eclipse.debug.ui.memory.IMemoryRendering;
import org.eclipse.debug.ui.memory.IMemoryRenderingContainer;
import org.eclipse.debug.ui.memory.IMemoryRenderingSite;

/**
 * Presentation context from the Memory View. This presentation provides
 * additional information regarding the originator of the asynchronous request.
 *
 * Clients may reference or subclass from this class.
 *
 * @since 3.2
 *
 */
public class MemoryViewPresentationContext extends PresentationContext {

	private IMemoryRenderingContainer fContainer;
	private IMemoryRendering fRendering;
	private IMemoryRenderingSite fMemoryView;

	/**
	 * Constructs MemoryViewPresentationContext
	 *
	 * @param site - the memory rendering site that this presentation context is
	 *            for
	 * @param container - the memory rendering container that this presentation
	 *            context is for, may be <code>null</code>
	 * @param rendering - - the memory rendering that this presentation context
	 *            is for, may be <code>null</code>
	 */
	public MemoryViewPresentationContext(IMemoryRenderingSite site, IMemoryRenderingContainer container, IMemoryRendering rendering) {
		super(site.getSite().getPart());

		fMemoryView = site;
		fContainer = container;
		fRendering = rendering;
	}

	/**
	 * Returns the memory rendering site that this presentation context is for
	 *
	 * @return the memory rendering site that this presentation context is for
	 */
	public IMemoryRenderingSite getMemoryRenderingSite() {
		return fMemoryView;
	}

	/**
	 * Returns the memory rendering container that this presentation context is
	 * for
	 *
	 * @return the memory rendering container that this presentation context is
	 *         for, <code>null</code> if none.
	 */
	public IMemoryRenderingContainer getMemoryRenderingContainer() {
		return fContainer;
	}

	/**
	 * Returns the memory rendering that this presentation context is for
	 *
	 * @return the memory rendering that this presentation context is for,
	 *         <code>null</code> if none.
	 */
	public IMemoryRendering getRendering() {
		return fRendering;
	}
}

Back to the top