Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpavery2005-03-29 21:14:36 +0000
committerpavery2005-03-29 21:14:36 +0000
commit0f11a862407fa0ac5d5f19861cf8e904c940919f (patch)
tree224c0e67fa47e39b7f09ef65b560ff8d331df468 /bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java
parentf039f23d2c359f5ca0263b6a4fe80e33d2ee61f4 (diff)
downloadwebtools.sourceediting-0f11a862407fa0ac5d5f19861cf8e904c940919f.tar.gz
webtools.sourceediting-0f11a862407fa0ac5d5f19861cf8e904c940919f.tar.xz
webtools.sourceediting-0f11a862407fa0ac5d5f19861cf8e904c940919f.zip
more sse.ui refactoring
Diffstat (limited to 'bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java')
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java
new file mode 100644
index 0000000000..5806815fcc
--- /dev/null
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/IReleasable.java
@@ -0,0 +1,20 @@
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 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
+ * Jens Lukowski/Innoopract - initial renaming/restructuring
+ *
+ *******************************************************************************/
+package org.eclipse.wst.sse.ui.internal;
+
+public interface IReleasable {
+ /**
+ * Generic catch-all for releasing resources and other references
+ */
+ void release();
+}

Back to the top