Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/IMemoryViewTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/IMemoryViewTab.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/IMemoryViewTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/IMemoryViewTab.java
deleted file mode 100644
index c9dab6a24..000000000
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/IMemoryViewTab.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 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.ui.memory.IMemoryRendering;
-
-
-/**
- * Represent a view tab in the Memory View or Memory Rendering View
- *
- * Refer to AbstractMemoryViewTab.
- * This is an internal interface. This class is not intended to be implemented by clients.
- *
- * @since 3.0
- */
-public interface IMemoryViewTab
-{
- /**
- * Remove the view tab.
- */
- public void dispose();
-
- /**
- * @return if the view tab is disposed
- */
- public boolean isDisposed();
-
- /**
- * @return enablement state of the view tab.
- */
- public boolean isEnabled();
-
-
- /**
- * Sets the enablament state of the view tab.
- * @param enabled
- */
- public void setEnabled(boolean enabled);
-
- /**
- * Set view tab's label
- * @param label
- */
- public void setTabLabel(String label);
-
- /**
- * @return view tab's label, null if the label is not available
- */
- public String getTabLabel();
-
- /**
- * @return the rendering of this view tab
- */
- public IMemoryRendering getRendering();
-}

Back to the top