gpt4 book ai didi

java - Apache ANT 独立 GUI,可轻松执行目标

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:15:20 25 4
gpt4 key购买 nike

有谁知道为 Apache ANT 编写的 GUI。我们正在研究开发一个 GUI 来为我们团队中的一些设计师和艺术家执行我们的一些开发工具。

我在 Ant External 网站上找到了一对,但其中大部分用于创建 ANT 文件,而不仅仅是列出可用的公共(public)目标。

http://ant.apache.org/external.html

最佳答案

ANT forms项目有一些任务使您能够生成可用于调用 ANT 目标的简单表单。

这是一个包含三个按钮的示例:

<project default="menu">

<property environment="env"/>

<path id="runtime.cp">
<pathelement location="${env.ANTFORM_HOME}/lib/antform.jar"/>
</path>

<target name="menu">
<taskdef name="antmenu" classname="com.sardak.antform.AntMenu" classpathref="runtime.cp"/>

<antmenu image="${env.ANTFORM_HOME}/doc/images/logo-small.jpg" title="My simple form" stylesheet="${env.ANTFORM_HOME}/style.test">
<label>A short label with a few explanatory words concerning the menu at hand.</label>
<button label="Echo 1 target" target="echo1"/>
<button label="Echo 2 target" target="echo2"/>
<button label="Echo 3 target" target="echo3"/>
</antmenu>
</target>

<target name="echo1">
<echo>DO SOMETHING</echo>
</target>

<target name="echo2">
<echo>DO SOMETHING</echo>
</target>

<target name="echo3">
<echo>DO SOMETHING</echo>
</target>

</project>

关于java - Apache ANT 独立 GUI,可轻松执行目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4209658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com