Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/ICCompletionContributor.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/ICCompletionContributor.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/ICCompletionContributor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/ICCompletionContributor.java
deleted file mode 100644
index 00ff6c1365e..00000000000
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/ICCompletionContributor.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.eclipse.cdt.ui;
-
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
-
-public interface ICCompletionContributor {
-
- /**
- * Initialize the completion contributor class
- */
- void initialize();
-
- /**
- * get the matching function of a given name
- */
- IFunctionSummary getFunctionInfo(String name);
-
- /**
- * Get array of matching functions starting with this prefix
- */
- IFunctionSummary[] getMatchingFunctions(String prefix);
-}
-

Back to the top