blob: e0583565b68ec52f475b46606b2984b745486814 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003 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.ant.internal.ui.launchConfigurations;
import org.eclipse.ui.externaltools.internal.model.IExternalToolConstants;
/**
* Constant definitions for Ant launch configurations.
* <p>
* Constant definitions only; not to be implemented.
* </p>
* @since 3.0
*/
public interface IAntLaunchConfigurationConstants {
// ------- Common Ant Launch Configuration Attributes -------
/**
* String attribute indicating the Ant targets to execute. Default value is
* <code>null</code> which indicates that the default target is to be
* executed. Format is a comma separated listing of targets.
*/
public static final String ATTR_ANT_TARGETS = IExternalToolConstants.PLUGIN_ID + ".ATTR_ANT_TARGETS"; //$NON-NLS-1$
/**
* Map attribute indicating the Ant properties to be defined during the
* build. Default value is <code>null</code> which indicates no additional
* properties will be defined.
*/
public static final String ATTR_ANT_PROPERTIES = IExternalToolConstants.PLUGIN_ID + ".ATTR_ANT_PROPERTIES"; //$NON-NLS-1$
/**
* String attribute indicating the Ant targets to execute. Default value is
* <code>null</code> which indicates that no additional property files
* will be defined. Format is a comma separated listing of property files.
*/
public static final String ATTR_ANT_PROPERTY_FILES = IExternalToolConstants.PLUGIN_ID + ".ATTR_ANT_PROPERTY_FILES"; //$NON-NLS-1$
/**
* String attribute indicating the custom runtime classpath to use for an Ant
* build. Default value is <code>null</code> which indicates that the global
* classpath is to be used. Format is a comma separated listing of URLs.
*/
public static final String ATTR_ANT_CUSTOM_CLASSPATH = IExternalToolConstants.PLUGIN_ID + ".ATTR_ANT_CUSTOM_CLASSPATH"; //$NON-NLS-1$
/**
* String attribute indicating the custom Ant home to use for an Ant build.
* Default value is <code>null</code> which indicates that no Ant home is to
* be set
*/
public static final String ATTR_ANT_HOME = IExternalToolConstants.PLUGIN_ID + ".ATTR_ANT_HOME"; //$NON-NLS-1$
// ------- Launch configuration types --------
/**
* Ant launch configuration type identifier.
*/
public static final String ID_ANT_LAUNCH_CONFIGURATION_TYPE = "org.eclipse.ant.AntLaunchConfigurationType"; //$NON-NLS-1$
/**
* Ant builder launch configuration type identifier. Ant project builders
* are of this type.
*/
public static final String ID_ANT_BUILDER_LAUNCH_CONFIGURATION_TYPE = "org.eclipse.ant.AntBuilderLaunchConfigurationType"; //$NON-NLS-1$
/**
* Identifier for Ant processes (value <code>org.eclipse.ant.ui.antProcess</code>). This identifier is
* set as the value for the <code>IProcess.ATTR_PROCESS_TYPE</code>
* attribute in processes created by the Ant launch delegate.
*/
public static final String ID_ANT_PROCESS_TYPE = "org.eclipse.ant.ui.antProcess"; //$NON-NLS-1$
}