blob: 91d5d8c4f3380424331b7b3ad8418e0715925a57 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.model;
/**
* Constants used by the Ant model to reference attributes
*/
public interface IAntModelConstants {
public static final String ATTR_LOCATION = "location"; //$NON-NLS-1$
public static final String ATTR_RESOURCE = "resource"; //$NON-NLS-1$
public static final String ATTR_ENVIRONMENT = "environment"; //$NON-NLS-1$
public static final String ATTR_TARGET = "target"; //$NON-NLS-1$
public static final String ATTR_DESTFILE = "destfile"; //$NON-NLS-1$
public static final String ATTR_SRC = "src"; //$NON-NLS-1$
public static final String ATTR_ZIPFILE = "zipfile"; //$NON-NLS-1$
public static final String ATTR_COMMAND = "command"; //$NON-NLS-1$
public static final String ATTR_EXECUTABLE = "executable"; //$NON-NLS-1$
public static final String ATTR_ANT_FILE = "antfile"; //$NON-NLS-1$
}