/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-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$ }