Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-04-27 12:42:33 +0000
committerUwe Stieber2012-04-27 12:42:33 +0000
commite7cbd35d8a7e2af160c68dc7d755d2b7aaa59703 (patch)
tree64c589cd3eac3181e9b466383d56c9736f75509d /target_explorer/plugins/org.eclipse.tcf.te.runtime/src
parent552bd59080df5daf3d08ef5896e92a9164f0f1d3 (diff)
downloadorg.eclipse.tcf-e7cbd35d8a7e2af160c68dc7d755d2b7aaa59703.tar.gz
org.eclipse.tcf-e7cbd35d8a7e2af160c68dc7d755d2b7aaa59703.tar.xz
org.eclipse.tcf-e7cbd35d8a7e2af160c68dc7d755d2b7aaa59703.zip
Target Explorer: Generalize categories handling
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime/src')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/workingsets/IWorkingSetElement.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/workingsets/IWorkingSetElement.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/workingsets/IWorkingSetElement.java
deleted file mode 100644
index fdeba61e1..000000000
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/workingsets/IWorkingSetElement.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Wind River Systems, Inc. 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:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.tcf.te.runtime.interfaces.workingsets;
-
-import org.eclipse.core.runtime.IAdaptable;
-
-/**
- * Interface to be implemented by root elements contributed to the
- * Target Explorer tree view which can be added to a working set as
- * root element.
- */
-public interface IWorkingSetElement extends IAdaptable {
-
- /**
- * Returns the working set element id.
- * <p>
- * The working set element id must be unique and persisted through out multiple session. This id
- * is used to identify the working set element at restarting the Target Explorer after a session
- * shutdown.
- *
- * @return The working set element id.
- */
- public String getElementId();
-}

Back to the top