作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个看起来像这样的复合组件:
<composite:interface>
<composite:attribute name="confirmUnload" type="java.lang.Boolean" default="false" />
<composite:attribute name="showLoader" type="java.lang.Boolean" default="true" />
<composite:attribute title="test test" name="menuFormIds" type="java.lang.String" default="menuForm" />
<composite:attribute name="unloadMessage" type="java.lang.String" default="You have unsaved data" />
</composite:interface>
<composite:implementation>
<div title="unloadEventComponent">...</div>
</composite:implementation>
在页面中使用此组件时,eclipse 自动完成功能将帮助处理属性。但是,有时不看代码很难理解该属性的作用,这对用户体验没有帮助。
有没有什么方法可以将属性描述添加到复合组件中,使其在 eclipse 自动完成中显示?
PrimeFaces 组件通常在选择属性时有描述,但它们使用自定义组件而不是复合组件。
最佳答案
为此,应该使用 shortDescription
属性。例如
<composite:attribute name="confirmUnload" type="java.lang.Boolean" default="false"
shortDescription="Set to true to enable the confirm unload message. Defaults to false." />
关于jsf - 如何将文档添加到复合组件的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14533575/
我是一名优秀的程序员,十分优秀!