当前位置: 首页>>代码示例>>Java>>正文


Java Property.init方法代码示例

本文整理汇总了Java中org.apache.tools.ant.taskdefs.Property.init方法的典型用法代码示例。如果您正苦于以下问题:Java Property.init方法的具体用法?Java Property.init怎么用?Java Property.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.tools.ant.taskdefs.Property的用法示例。


在下文中一共展示了Property.init方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: updateProject

import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
/**
 * Updates the Ant Project used in this container with variables set in Ivy.
 *
 * All variables defined in Ivy will be set in the Ant project under two names:
 * <ul>
 * <li>the name of the variable</li>
 * <li>the name of the variable suffixed with a dot + the given id, if the given id is not null
 * </li>
 * </ul>
 *
 * @param id
 *            The identifier of the settings in which the variables have been set, which should
 *            be used as property names suffix
 */
public void updateProject(String id) {
    Map<String, String> r = new HashMap<>(super.getVariables());
    r.putAll(overwrittenProperties);
    for (Map.Entry<String, String> entry : r.entrySet()) {
        setPropertyIfNotSet(entry.getKey(), entry.getValue());
        if (id != null) {
            setPropertyIfNotSet(entry.getKey() + "." + id, entry.getValue());
        }
    }

    if (getEnvironmentPrefix() != null) {
        Property propTask = new Property();
        propTask.setProject(project);
        propTask.setEnvironment(getEnvironmentPrefix());
        propTask.init();
        propTask.execute();
    }
}
 
开发者ID:apache,项目名称:ant-ivy,代码行数:33,代码来源:IvyAntVariableContainer.java

示例2: loadDeliveryList

import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
private void loadDeliveryList() {
    Property property = (Property) getProject().createTask("property");
    property.setOwningTarget(getOwningTarget());
    property.init();
    property.setFile(deliveryList);
    property.perform();
}
 
开发者ID:apache,项目名称:ant-ivy,代码行数:8,代码来源:IvyDeliver.java

示例3: setProperty

import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
private void setProperty(final String name, final String value) {
  final Property property = (Property) getProject().createTask("property");
  property.setOwningTarget(getOwningTarget());
  property.init();
  property.setName(name);
  property.setValue(value);
  property.execute();
}
 
开发者ID:rmcilroy,项目名称:HeraJVM,代码行数:9,代码来源:TimerTask.java

示例4: execute

import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
public void execute() throws BuildException {
  try {
    super.execute();
  } catch (final BuildException be) {
    if (failonerror) throw be;
    if (null != failonerrorProperty) {
      final Property property = (Property) getProject().createTask("property");
      property.setOwningTarget(getOwningTarget());
      property.init();
      property.setName(failonerrorProperty);
      property.setValue("true");
      property.execute();
    }
  }
}
 
开发者ID:rmcilroy,项目名称:HeraJVM,代码行数:16,代码来源:ErrorRecordingAntTask.java

示例5: createIvyEngine

import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
void createIvyEngine(final ProjectComponent task) {
    Project project = task.getProject();
    Property prop = new Property() {
        public void execute() throws BuildException {
            addProperties(getDefaultProperties(task));
        }
    };
    prop.setProject(project);
    prop.init();
    prop.execute();

    IvyAntVariableContainer ivyAntVariableContainer = new IvyAntVariableContainer(project);
    IvySettings settings = new IvySettings(ivyAntVariableContainer);
    settings.setBaseDir(project.getBaseDir());

    if (file == null && url == null) {
        defineDefaultSettingFile(ivyAntVariableContainer, task);
    }

    if (antWorkspaceResolver != null) {
        settings.addConfigured(antWorkspaceResolver.getResolver());
    }

    Ivy ivy = Ivy.newInstance(settings);
    try {
        ivy.pushContext();
        AntMessageLogger.register(task, ivy);

        Message.showInfo();
        configureURLHandler();
        if (file != null) {
            if (!file.exists()) {
                throw new BuildException("settings file does not exist: " + file);
            }
            ivy.configure(file);
        } else {
            if (url == null) {
                throw new AssertionError(
                        "ivy setting should have either a file, either an url,"
                                + " and if not defineDefaultSettingFile must set it.");
            }
            ivy.configure(url);
        }
        ivyAntVariableContainer.updateProject(id);
        ivyEngine = ivy;
    } catch (ParseException | IOException e) {
        throw new BuildException("impossible to configure ivy:settings with given "
                + (file != null ? "file: " + file : "url: " + url) + " : " + e, e);
    } finally {
        ivy.popContext();
    }
}
 
开发者ID:apache,项目名称:ant-ivy,代码行数:53,代码来源:IvyAntSettings.java


注:本文中的org.apache.tools.ant.taskdefs.Property.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。