Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2011-11-21 11:52:40 +0000
committerUwe Stieber2011-11-21 11:52:40 +0000
commit751dafbf13a433490250af148c44784d78a4e48d (patch)
tree1b77482db4a67d63c13ff225f773ef3864a6d26f /target_explorer/plugins/org.eclipse.tcf.te.runtime
parentd7a228f8e43eb1bbcf9748c7959353b46568af28 (diff)
downloadorg.eclipse.tcf-751dafbf13a433490250af148c44784d78a4e48d.tar.gz
org.eclipse.tcf-751dafbf13a433490250af148c44784d78a4e48d.tar.xz
org.eclipse.tcf-751dafbf13a433490250af148c44784d78a4e48d.zip
Target Explorer: Introduce non-UI IDisposable interface
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/IDisposable.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/IDisposable.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/IDisposable.java
new file mode 100644
index 000000000..dcb2a3b66
--- /dev/null
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/IDisposable.java
@@ -0,0 +1,21 @@
+/*******************************************************************************
+ * 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;
+
+/**
+ * A disposable artifact.
+ */
+public interface IDisposable {
+
+ /**
+ * Dispose the artifact.
+ */
+ public void dispose();
+}

Back to the top