我有一只蚂蚁条件是这样的:蚂蚁条件块
<condition property="create_stub">
<and>
<available file="${create_stub_command_file}" property="stub_script.present" />
<isset property="packaged_stub_file"/>
</and>
</condition>
我的理解是:如果create_stub_command_file
存在,则设置stub_script.present=true
。但我不确定
<isset property="packaged_stub_file"/>
这是干什么的?它是如何改变整体状况的。即在这种情况下,条件块是否会评估为真?