KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > search > IJavaSearchUIConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.ui.search;
12
13 /**
14  * Constants used by the Java search
15  */

16 public interface IJavaSearchUIConstants {
17     /** Attribute name of the Java Element handle ID in a marker */
18     static final String JavaDoc ATT_JE_HANDLE_ID= "org.eclipse.jdt.internal.ui.search.handleID"; //$NON-NLS-1$
19

20     /** Attribute name of Java Element handle ID changed flag in a marker */
21     static final String JavaDoc ATT_JE_HANDLE_ID_CHANGED= "org.eclipse.jdt.internal.ui.search.handleIdChanged"; //$NON-NLS-1$
22

23     /** Attribute name for isWorkingCopy property */
24     static final String JavaDoc ATT_IS_WORKING_COPY= "org.eclipse.jdt.internal.ui.search.isWorkingCopy"; //$NON-NLS-1$
25
}
26
Popular Tags