KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > propertiesfileeditor > IPropertiesFileEditorActionConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.propertiesfileeditor;
12
13 /**
14  * Defines action IDs for private JavaEditor actions.
15  *
16  * @since 3.1
17  */

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

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

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

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

34     /**
35      * ID of the action to toggle the style of the presentation.
36      */

37     public static final String JavaDoc TOGGLE_PRESENTATION= "togglePresentation"; //$NON-NLS-1$
38
}
39
Popular Tags