Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/search/org/eclipse/cdt/core/search/ICSearchPattern.java')
-rw-r--r--core/org.eclipse.cdt.core/search/org/eclipse/cdt/core/search/ICSearchPattern.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/core/search/ICSearchPattern.java b/core/org.eclipse.cdt.core/search/org/eclipse/cdt/core/search/ICSearchPattern.java
deleted file mode 100644
index 7fe4c1f3b73..00000000000
--- a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/core/search/ICSearchPattern.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003 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 Corp. - Rational Software - initial implementation
- *******************************************************************************/
-/*
- * Created on Jun 13, 2003
- */
-package org.eclipse.cdt.core.search;
-
-import org.eclipse.cdt.core.parser.ISourceElementCallbackDelegate;
-
-/**
- * @author aniefer
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public interface ICSearchPattern extends ICSearchConstants{
-
- public static final int IMPOSSIBLE_MATCH = 0;
- public static final int POSSIBLE_MATCH = 1;
- public static final int ACCURATE_MATCH = 2;
- public static final int INACCURATE_MATCH = 3;
-
- /**
- * @param node
- * @return
- */
- int matchLevel( ISourceElementCallbackDelegate node, LimitTo limit );
-
- LimitTo getLimitTo();
- boolean canAccept( LimitTo limit );
-}

Back to the top