]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/IPropertiesFileEditorActionConstants.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / propertiesfileeditor / IPropertiesFileEditorActionConstants.java
CommitLineData
1b2798f6
EK
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 *******************************************************************************/
11package org.eclipse.jdt.internal.ui.propertiesfileeditor;
12
13/**
14 * Defines action IDs for private properties file editor actions.
15 * <p>
16 * This interface must not be implemented by clients.
17 * </p>
18 *
19 * @since 3.1
20 */
21public interface IPropertiesFileEditorActionConstants {
22
23 /**
24 * ID of the action to toggle smart typing.
25 * Value: <code>"smartTyping"</code>
26 * @since 3.0
27 */
28 public static final String TOGGLE_SMART_TYPING= "smartTyping"; //$NON-NLS-1$
29
30 /**
31 * ID of the smart typing status item
32 * Value: <code>"SmartTyping"</code>
33 * @since 3.0
34 */
35 public static final String STATUS_CATEGORY_SMART_TYPING= "SmartTyping"; //$NON-NLS-1$
36
37 /**
38 * ID of the action to toggle the style of the presentation.
39 */
40 public static final String TOGGLE_PRESENTATION= "togglePresentation"; //$NON-NLS-1$
41}