Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/MemoryViewPresentationContext.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/MemoryViewPresentationContext.java73
1 files changed, 0 insertions, 73 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/MemoryViewPresentationContext.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/MemoryViewPresentationContext.java
deleted file mode 100644
index ade979113..000000000
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/MemoryViewPresentationContext.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2006 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.PartPresentationContext;
-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 PartPresentationContext {
-
- 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