blob: 6bcb9366ed87fccb49e017fba8d24f4701a4cbf8 [file] [log] [blame]
/*******************************************************************************
* 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.ant.internal.ui.editor.model;
/**
* Constants used by the Ant model to reference attributes
*/
public interface IAntModelConstants {
/**
* Attributes of Ant elements
*/
public static final String ATTR_NAME= "name"; //$NON-NLS-1$
public static final String ATTR_VALUE= "value"; //$NON-NLS-1$
public static final String ATTR_DEFAULT= "default"; //$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_DIR= "dir"; //$NON-NLS-1$
public static final String ATTR_FILE= "file"; //$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_DESCRIPTION= "description"; //$NON-NLS-1$
}