来自 Xpand 的样本 -
我可以得到一些关于 XPand 的好的教程吗?我需要获取有关 LET 等命令的信息。 如果有人能在上面贴一些样本就更好了。
我面临的问题就像......我运行一个“for”循环,在检查某些条件后我需要增加一个计数器。 但我无法这样做。 当我增加计数器时,它会被打印到输出文件中。
提前致谢。
Can i get some good tutorials on XPand.. i need to get info on commands like LET. It would better if some one could post some samples on it.
The problem i am facing is like.. i run a "for" loop and after checking some condition i need to increment a counter . but i am unable to do so. when i increment the counter, it gets printed to the output file.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个 工作示例,它模板化了 Ant 脚本。 同一篇文章在 DZone 上重新发布。
更具体地说,本文在
LET 运算符:
最后,来自 的这篇文章openArchitecureWare 论坛:
There is a worked example which templates Ant scripts. The same article is republished on DZone.
More specifically, this paper presents this example on the
LET
operator:Finally, from this post on openArchitecureWare forum:
这个答案与使用第二段发布的第二个问题有关。 您可以使用链运算符 (->) 阻止打印表达式值。
例如:
请参阅官方在线帮助文档中的“throwError (Object o)”示例:
http://help. eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.xpand.doc%2Fhelp%2Fch04s02.html
您可能还会发现“计数器扩展”部分对计数器很有帮助Xpand 中的操作
This answer is pertaining to the second question posted using the second paragraph. you can stop an expression value from getting printed using a chain operator (->).
For ex:
See the example for 'throwError (Object o)' in the official online help documentation here:
http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.xpand.doc%2Fhelp%2Fch04s02.html
You may also find the 'Counter extensions' section helpful for counter operations in Xpand