KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > core > IAntCoreConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ant.internal.core;
12
13
14 /**
15  * Common constants.
16  */

17 public interface IAntCoreConstants {
18
19     // default values
20
public static final String JavaDoc DEFAULT_BUILD_FILENAME = "build.xml"; //$NON-NLS-1$
21

22     // preferences
23
public static final String JavaDoc PREFERENCE_TASKS = "tasks"; //$NON-NLS-1$
24
public static final String JavaDoc PREFERENCE_TYPES = "types"; //$NON-NLS-1$
25

26     public static final String JavaDoc PREFIX_TASK = "task."; //$NON-NLS-1$
27
public static final String JavaDoc PREFIX_TYPE = "type."; //$NON-NLS-1$
28

29     /**
30      * Preferences
31      * @since 3.0
32      */

33     public static final String JavaDoc PREFERENCE_ANT_HOME_ENTRIES = "ant_home_entries"; //$NON-NLS-1$
34
public static final String JavaDoc PREFERENCE_ADDITIONAL_ENTRIES = "additional_entries"; //$NON-NLS-1$
35

36     public static final String JavaDoc PREFERENCE_CLASSPATH_CHANGED = "classpath_changed"; //$NON-NLS-1$
37

38     /**
39      * Preferences
40      * @since 2.1
41      */

42     public static final String JavaDoc PREFERENCE_ANT_HOME = "ant_home"; //$NON-NLS-1$
43
public static final String JavaDoc PREFERENCE_PROPERTIES = "properties"; //$NON-NLS-1$
44
public static final String JavaDoc PREFERENCE_PROPERTY_FILES = "propertyfiles"; //$NON-NLS-1$
45
public static final String JavaDoc PREFIX_PROPERTY = "property."; //$NON-NLS-1$
46
}
47
Popular Tags