Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 167409ee4722efb6e96fb7455128d776374d9987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.externaltools.internal.model;


/**
 * Constants used to identify user preferences.
 */
public interface IPreferenceConstants {

	/**
	 * Boolean preference key which indicates whether or not the user should be prompted
	 * before an external tool project builder is migrated to the new builder format.
	 * This is used before an old-style (Eclipse 1.0 or 2.0) builder is migrated to
	 * the new format (launch configurations).
	 */
	public static final String PROMPT_FOR_TOOL_MIGRATION = "externaltools.builders.promptForMigration"; //$NON-NLS-1$
	/**
	 * Boolean preference key which indicates whether or not the user should be prompted
	 * before a project is migrated tot he new builder handle format.
	 * This is used before an old-style (Eclipse 2.1) project handle is migrated
	 * from the old format (launch config handles) to the new format (path to the launch).
	 */
	public static final String PROMPT_FOR_PROJECT_MIGRATION = "externaltools.builders.promptForProjectMigration"; //$NON-NLS-1$
}

Back to the top