⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 magicnames.java

📁 Use the links below to download a source distribution of Ant from one of our mirrors. It is good pra
💻 JAVA
字号:
/* *  Licensed to the Apache Software Foundation (ASF) under one or more *  contributor license agreements.  See the NOTICE file distributed with *  this work for additional information regarding copyright ownership. *  The ASF licenses this file to You under the Apache License, Version 2.0 *  (the "License"); you may not use this file except in compliance with *  the License.  You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * *  Unless required by applicable law or agreed to in writing, software *  distributed under the License is distributed on an "AS IS" BASIS, *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *  See the License for the specific language governing permissions and *  limitations under the License. * */package org.apache.tools.ant;import org.apache.tools.ant.launch.Launcher;/** * Magic names used within Ant. * * Not all magic names are here yet. * * @since Ant 1.6 */public final class MagicNames {    private MagicNames() {    }    /**     * prefix for antlib URIs:     * {@value}     */    public static final String ANTLIB_PREFIX = "antlib:";    /**     * Ant version property.     * Value: {@value}     */    public static final String ANT_VERSION = "ant.version";    /**     * System classpath policy.     * Value: {@value}     */    public static final String BUILD_SYSCLASSPATH = "build.sysclasspath";    /**     * The name of the script repository used by the script repo task.     * Value {@value}     */    public static final String SCRIPT_REPOSITORY = "org.apache.ant.scriptrepo";    /**     * The name of the reference to the System Class Loader.     * Value {@value}     **/    public static final String SYSTEM_LOADER_REF = "ant.coreLoader";    /**     * Name of the property which can provide an override of the repository dir.     * for the libraries task     * Value {@value}     */    public static final String REPOSITORY_DIR_PROPERTY = "ant.maven.repository.dir";    /**     * Name of the property which can provide an override of the repository URL.     * for the libraries task     * Value {@value}     */    public static final String REPOSITORY_URL_PROPERTY = "ant.maven.repository.url";    /**     * name of the resource that taskdefs are stored under.     * Value: {@value}     */    public static final String TASKDEF_PROPERTIES_RESOURCE =            "/org/apache/tools/ant/taskdefs/defaults.properties";    /**     * name of the resource that typedefs are stored under.     * Value: {@value}     */    public static final String TYPEDEFS_PROPERTIES_RESOURCE =            "/org/apache/tools/ant/types/defaults.properties";    /**     * Reference to the current Ant executor.     * Value: {@value}     */    public static final String ANT_EXECUTOR_REFERENCE = "ant.executor";    /**     * Property defining the classname of an executor.     * Value: {@value}     */    public static final String ANT_EXECUTOR_CLASSNAME = "ant.executor.class";    /**     * property name for basedir of the project.     * Value: {@value}     */    public static final String PROJECT_BASEDIR = "basedir";    /**     * property for ant file name.     * Value: {@value}     */    public static final String ANT_FILE = "ant.file";    /**     * Property used to store the java version ant is running in.     * Value: {@value}     * @since Ant 1.7     */    public static final String ANT_JAVA_VERSION = "ant.java.version";    /**     * Property used to store the location of ant.     * Value: {@value}     * @since Ant 1.7     */    public static final String ANT_HOME = Launcher.ANTHOME_PROPERTY;    /**     * Property used to store the location of the ant library (typically the ant.jar file.)     * Value: {@value}     * @since Ant 1.7     */    public static final String ANT_LIB = "ant.core.lib";    /**     * property for regular expression implementation.     * Value: {@value}     */    public static final String REGEXP_IMPL = "ant.regexp.regexpimpl";    /**     * property that provides the default value for javac's and     * javadoc's source attribute.     * @since Ant 1.7     * Value: {@value}     */    public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source";    /**     * property that provides the default value for javac's target attribute.     * @since Ant 1.7     * Value: {@value}     */    public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";    /**     * Name of the magic property that controls classloader reuse.     * @since Ant 1.4.     * Value: {@value}     */    public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader";    /**     * Prefix used to store classloader references.     * Value: {@value}     */    public static final String REFID_CLASSPATH_LOADER_PREFIX = "ant.loader.";    /**     * Reference used to store the property helper.     * Value: {@value}     */    public static final String REFID_PROPERTY_HELPER = "ant.PropertyHelper";    /**     * Name of JVM system property which provides the name of the ProjectHelper class to use.     * Value: {@value}     */    public static final String PROJECT_HELPER_CLASS = "org.apache.tools.ant.ProjectHelper";    /**     * The service identifier in jars which provide ProjectHelper implementations.     * Value: {@value}     */    public static final String PROJECT_HELPER_SERVICE =        "META-INF/services/org.apache.tools.ant.ProjectHelper";    /**     * Name of ProjectHelper reference that we add to a project.     * Value: {@value}     */    public static final String REFID_PROJECT_HELPER = "ant.projectHelper";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -