KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > javaeditor > IJavaEditorActionConstants


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

11 package org.eclipse.jdt.internal.ui.javaeditor;
12
13 /**
14  * Defines action IDs for private JavaEditor actions.
15  */

16 public interface IJavaEditorActionConstants {
17
18     /**
19      * ID of the action to toggle smart typing.
20      * Value: <code>"smartTyping"</code>
21      * @since 3.0
22      */

23     public static final String JavaDoc TOGGLE_SMART_TYPING= "smartTyping"; //$NON-NLS-1$
24

25     /**
26      * ID of the smart typing status item
27      * Value: <code>"SmartTyping"</code>
28      * @since 3.0
29      */

30     public static final String JavaDoc STATUS_CATEGORY_SMART_TYPING= "SmartTyping"; //$NON-NLS-1$
31

32     /**
33      * ID of the action to toggle the style of the presentation.
34      */

35     public static final String JavaDoc TOGGLE_PRESENTATION= "togglePresentation"; //$NON-NLS-1$
36

37     /**
38      * ID of the action to copy the qualified name.
39      * @since 3.3
40      */

41     public static final String JavaDoc COPY_QUALIFIED_NAME= "copyQualifiedName"; //$NON-NLS-1$
42
}
43
Popular Tags