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:
authordavid_williams2007-05-21 15:11:23 +0000
committerdavid_williams2007-05-21 15:11:23 +0000
commit312c0a659695bc0da2ba0a6eb074d62f13119694 (patch)
treef47b6fef7de2deead8202ad5f7c704838f742f4d /plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java
parentf4fdc0b19ae8f4eea4bec6a0ee71a32bde5dafc4 (diff)
downloadwebtools.common-200705211515.tar.gz
webtools.common-200705211515.tar.xz
webtools.common-200705211515.zip
This commit was manufactured by cvs2svn to create tag 'v200705211515'.v200705211515
Diffstat (limited to 'plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java')
-rw-r--r--plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java b/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java
deleted file mode 100644
index 0bc140394..000000000
--- a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/ISearchConstants.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2005 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
- *******************************************************************************/
-package org.eclipse.wst.common.ui.internal.search;
-
-public interface ISearchConstants {
-
- /**
- * The search result is a declaration.
- * Can be used in conjunction with any of the nature of searched elements
- * so as to better narrow down the search.
- */
- public static int DECLARATIONS= 0;
-
-
- /**
- * The search result is a reference.
- * Can be used in conjunction with any of the nature of searched elements
- * so as to better narrow down the search.
- * References can contain implementers since they are more generic kind
- * of matches.
- */
- public static int REFERENCES= 1;
-
- /**
- * The search result is a declaration, or a reference.
- * Can be used in conjunction with any of the nature of searched elements
- * so as to better narrow down the search.
- */
- public static int ALL_OCCURRENCES= 2;
-}

Back to the top