]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/jdt-before/ui/org/eclipse/jdt/internal/ui/javaeditor/IJavaEditorActionConstants.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-before / ui / org / eclipse / jdt / internal / ui / javaeditor / IJavaEditorActionConstants.java
CommitLineData
1b2798f6
EK
1/*******************************************************************************
2 * Copyright (c) 2000, 2008 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 *******************************************************************************/
11package org.eclipse.jdt.internal.ui.javaeditor;
12
13
14/**
15 * Defines action IDs for private JavaEditor actions.
16 * <p>
17 * This interface is not intended to be implemented or extended.
18 * </p>.
19 */
20public interface IJavaEditorActionConstants {
21
22 /**
23 * ID of the action to toggle smart typing.
24 * Value: <code>"smartTyping"</code>
25 * @since 3.0
26 */
27 public static final String TOGGLE_SMART_TYPING= "smartTyping"; //$NON-NLS-1$
28
29 /**
30 * ID of the smart typing status item
31 * Value: <code>"SmartTyping"</code>
32 * @since 3.0
33 */
34 public static final String STATUS_CATEGORY_SMART_TYPING= "SmartTyping"; //$NON-NLS-1$
35
36 /**
37 * ID of the action to toggle the style of the presentation.
38 */
39 public static final String TOGGLE_PRESENTATION= "togglePresentation"; //$NON-NLS-1$
40
41 /**
42 * ID of the action to copy the qualified name.
43 * @since 3.3
44 */
45 public static final String COPY_QUALIFIED_NAME= "copyQualifiedName"; //$NON-NLS-1$
46}