fix #774 infinite loop in net.sourceforge.phpeclipse.builder.IdentifierIndexManager...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / IJavaEditorActionConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 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 net.sourceforge.phpeclipse.phpeditor;
12
13 /**
14  * Defines action IDs for private JavaEditor actions.
15  */
16 public interface IJavaEditorActionConstants {
17
18         /**
19          * ID of the action to toggle the style of the presentation.
20          */
21         public static final String TOGGLE_PRESENTATION = "togglePresentation"; //$NON-NLS-1$
22
23         /**
24          * ID of the toolbar action to go to the previous error.
25          */
26         public static final String PREVIOUS_ERROR = "gotoPreviousError"; //$NON-NLS-1$
27
28         /**
29          * ID of the toolbar action to go to the next error.
30          */
31         public static final String NEXT_ERROR = "gotoNextError"; //$NON-NLS-1$
32 }