Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend.shared.ui/src/org/eclipse/xtend/shared/ui/editor/search/view/IFileSearchContentProvider.java')
-rw-r--r--plugins/org.eclipse.xtend.shared.ui/src/org/eclipse/xtend/shared/ui/editor/search/view/IFileSearchContentProvider.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtend.shared.ui/src/org/eclipse/xtend/shared/ui/editor/search/view/IFileSearchContentProvider.java b/plugins/org.eclipse.xtend.shared.ui/src/org/eclipse/xtend/shared/ui/editor/search/view/IFileSearchContentProvider.java
new file mode 100644
index 00000000..48722e56
--- /dev/null
+++ b/plugins/org.eclipse.xtend.shared.ui/src/org/eclipse/xtend/shared/ui/editor/search/view/IFileSearchContentProvider.java
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Copyright (c) 2005 - 2007 committers of openArchitectureWare 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: committers of openArchitectureWare - initial API and
+ * implementation
+ ******************************************************************************/
+package org.eclipse.xtend.shared.ui.editor.search.view;
+
+/**
+ * <code>IFileSearchContentProvider</code> provides extra methods for updating
+ * result sets.
+ *
+ * @author Peter Friese
+ */
+public interface IFileSearchContentProvider {
+
+ public abstract void elementsChanged(Object[] updatedElements);
+
+ public abstract void clear();
+
+} \ No newline at end of file

Back to the top