blob: b54be37a9fac72aaadee7dc9dbb1951d9afd846f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.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$
}