怎样在 Rational Team Concert 中创建仪表板视图
2010-06-14 00:00:00 来源:WEB开发网为项目输入一个以 in .web 结尾的名字(例如:c om.example.web )。
点击 Next 然后点击 Finish 。
切换至新插件 插件声明编辑器 的 Dependencies 项。
点击 Add 按钮,选择 net.jazz.ajax 插件,然后点击 OK。
切换至 Extensions 项。
点击 Add 按钮,选择 net.jazz.ajax.webBundles 扩展点,并点击 Finish。
点击工具栏上的 Save 按钮或者点击 Ctrl + S 以保存更改。
注册视图
视图需要在 plugin.xml 文件中作为扩展点注册,如代码清单 1 所示。
清单 1. plugin.xml 文件的扩展点
<!-- Web bundle marker -->
<extension point="net.jazz.ajax.webBundles">
<prerequisites>
<requiredWebBundle id="net.jazz.ajax"/>
<requiredWebBundle id="net.jazz.web.ui"/>
</prerequisites>
</extension>
<!-- Viewlets and categories -->
<extension point="com.ibm.team.dashboard.common.viewlets">
<category id="com.ibm.afworkpktmgmt.category" name="AFWorkPacketMgmtViewlet">
</category>
<Viewlet icon="graphics/icons/icon.gif"
id="com.ibm.afworkpktmgmt.viewlet" refresh-interval="15"
title="Application Factory Work Packet Management"
widget="com.ibm.af.workpktmngmt.viewlet.web.ui.internal.AFWorkPacketMgmtViewlet">
</viewlet>
<viewlet-entry category="com.ibm.afworkpktmgmt.category"
title="Application Factory Work Packet Management"
preview="graphics/images/preview-AFWorkPktMngmtViewlet.PNG"
viewlet-id="com.ibm.afworkpktmgmt.viewlet">
<description>
This is the description of the AFWorkPacketMgmtViewlet entry
that appears in the viewlet chooser.
</description>
</viewlet-entry>
</extension>
赞助商链接