开发者

How do I refer to another property in a jnlp?

开发者 https://www.devze.com 2023-01-13 19:07 出处:网络
<property name=\"netbeans.user\" value=\"${user.home}/.foo\"/> <property name=\"derby.system.home\" value=\"netbeans.user\">
<property name="netbeans.user" value="${user.home}/.foo"/>
        <property name="derby.system.home" value="netbeans.user">

I want derby.system.home property to be the same as the above one. How do I achieve that other than by expliciting the same CDATA (so by value)?

I guess what I'm asking is: how can I let the value of an element attribute but the same of another element, by reference?

开发者_JAVA百科

PS: I'm trying with this jnlp.


I cannot do that in XML. JNLP is xml.

0

精彩评论

暂无评论...
验证码 换一张
取 消